Changeset 142


Ignore:
Timestamp:
04/15/09 14:44:16 (15 years ago)
Author:
bas
Message:

Addded:

  • src/AdvancedParser.py
Location:
trunk
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile.in

    r138 r142  
    3232        $(INSTALL) -d $(DESTDIR)$(SBIN_DIR)
    3333        $(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)
    3535        for script in $(PYTHON_FILES) ; \
    3636        do \
    37           $(INSTALL) -m 755 -o root $$script  $(DESTDIR)$(BIN_DIR)/$$script ;\
     37          $(INSTALL) -m 755 -o root src/$$script  $(DESTDIR)$(BIN_DIR)/$$script ;\
    3838        done
    3939
  • trunk/configure

    r138 r142  
    577577PACKAGE_BUGREPORT=
    578578
    579 ac_unique_file="pxeconfig.in"
     579ac_unique_file="src/pxeconfig.in"
    580580ac_subst_vars='SHELL
    581581PATH_SEPARATOR
     
    18001800
    18011801
    1802 ac_config_files="$ac_config_files Makefile pxeconfig.py pxeconfigd hexls examples/pxeconfigd.xinetd"
     1802ac_config_files="$ac_config_files Makefile src/pxeconfig.py src/pxeconfig src/pxeconfigd src/hexls examples/pxeconfigd.xinetd"
    18031803
    18041804cat >confcache <<\_ACEOF
     
    23702370  case $ac_config_target in
    23712371    "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" ;;
    23752376    "examples/pxeconfigd.xinetd") CONFIG_FILES="$CONFIG_FILES examples/pxeconfigd.xinetd" ;;
    23762377
  • trunk/configure.in

    r138 r142  
    66#
    77#
    8 AC_INIT(pxeconfig.in)
     8AC_INIT(src/pxeconfig.in)
    99AC_SUBST(prefix)
    1010AC_SUBST(exec_prefix)
     
    5959AC_OUTPUT(
    6060        Makefile
    61         pxeconfig.py
    62         pxeconfigd
    63         hexls
     61        src/pxeconfig.py
     62        src/pxeconfig
     63        src/pxeconfigd
     64        src/hexls
    6465        examples/pxeconfigd.xinetd
    6566        )
  • trunk/setup.py

    r141 r142  
    2121
    2222        extra_path = 'pxeconfig',
    23                 #package_dir = { '' : 'src' },
     23                package_dir = { '' : 'src' },
    2424                py_modules = [ 'pxeconfig', 'AdvancedParser' ],
    2525)
Note: See TracChangeset for help on using the changeset viewer.