- Timestamp:
- 04/15/09 14:44:16 (14 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.in
r138 r142 32 32 $(INSTALL) -d $(DESTDIR)$(SBIN_DIR) 33 33 $(INSTALL) -d $(DESTDIR)$(BIN_DIR) 34 $(INSTALL) -m 755 -o root pxeconfigd $(DESTDIR)$(SBIN_DIR)34 $(INSTALL) -m 755 -o root src/pxeconfigd $(DESTDIR)$(SBIN_DIR) 35 35 for script in $(PYTHON_FILES) ; \ 36 36 do \ 37 $(INSTALL) -m 755 -o root $$script $(DESTDIR)$(BIN_DIR)/$$script ;\37 $(INSTALL) -m 755 -o root src/$$script $(DESTDIR)$(BIN_DIR)/$$script ;\ 38 38 done 39 39 -
trunk/configure
r138 r142 577 577 PACKAGE_BUGREPORT= 578 578 579 ac_unique_file=" pxeconfig.in"579 ac_unique_file="src/pxeconfig.in" 580 580 ac_subst_vars='SHELL 581 581 PATH_SEPARATOR … … 1800 1800 1801 1801 1802 ac_config_files="$ac_config_files Makefile pxeconfig.py pxeconfigdhexls examples/pxeconfigd.xinetd"1802 ac_config_files="$ac_config_files Makefile src/pxeconfig.py src/pxeconfig src/pxeconfigd src/hexls examples/pxeconfigd.xinetd" 1803 1803 1804 1804 cat >confcache <<\_ACEOF … … 2370 2370 case $ac_config_target in 2371 2371 "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; 2372 "pxeconfig.py") CONFIG_FILES="$CONFIG_FILES pxeconfig.py" ;; 2373 "pxeconfigd") CONFIG_FILES="$CONFIG_FILES pxeconfigd" ;; 2374 "hexls") CONFIG_FILES="$CONFIG_FILES hexls" ;; 2372 "src/pxeconfig.py") CONFIG_FILES="$CONFIG_FILES src/pxeconfig.py" ;; 2373 "src/pxeconfig") CONFIG_FILES="$CONFIG_FILES src/pxeconfig" ;; 2374 "src/pxeconfigd") CONFIG_FILES="$CONFIG_FILES src/pxeconfigd" ;; 2375 "src/hexls") CONFIG_FILES="$CONFIG_FILES src/hexls" ;; 2375 2376 "examples/pxeconfigd.xinetd") CONFIG_FILES="$CONFIG_FILES examples/pxeconfigd.xinetd" ;; 2376 2377 -
trunk/configure.in
r138 r142 6 6 # 7 7 # 8 AC_INIT( pxeconfig.in)8 AC_INIT(src/pxeconfig.in) 9 9 AC_SUBST(prefix) 10 10 AC_SUBST(exec_prefix) … … 59 59 AC_OUTPUT( 60 60 Makefile 61 pxeconfig.py 62 pxeconfigd 63 hexls 61 src/pxeconfig.py 62 src/pxeconfig 63 src/pxeconfigd 64 src/hexls 64 65 examples/pxeconfigd.xinetd 65 66 ) -
trunk/setup.py
r141 r142 21 21 22 22 extra_path = 'pxeconfig', 23 #package_dir = { '' : 'src' },23 package_dir = { '' : 'src' }, 24 24 py_modules = [ 'pxeconfig', 'AdvancedParser' ], 25 25 )
Note: See TracChangeset
for help on using the changeset viewer.