# HG changeset patch # User KarstenBock@gmx.net # Date 1307627992 -7200 # Node ID de378945b839b67082d6f8c0f09517ba143dcadd # Parent 6ff6a2f74f1e9afd22357ea871d99d64c828c51d Fixed 2 (of 3) issues with the scons script for windows * Removed unnecessary START command from parpg.bat.in * Changed PROGRAM_NAME to PROJECT_NAME for the default prefix value in windows diff -r 6ff6a2f74f1e -r de378945b839 SConstruct --- a/SConstruct Mon Jun 06 16:23:53 2011 -1000 +++ b/SConstruct Thu Jun 09 15:59:52 2011 +0200 @@ -141,7 +141,7 @@ PY_LIB_NAME = 'python$PY_VERSION_SHORT' elif platform_name == 'Windows': try: - PREFIX_DEFAULT = os.environ['PROGRAMFILES'] + r'\$PROGRAM_NAME' + PREFIX_DEFAULT = os.environ['PROGRAMFILES'] + r'\$PROJECT_NAME' except KeyError: PREFIX_DEFAULT = '' error_message = '%PROGRAMFILES% environmental variable is not ' \ diff -r 6ff6a2f74f1e -r de378945b839 bin/parpg.bat.in --- a/bin/parpg.bat.in Mon Jun 06 16:23:53 2011 -1000 +++ b/bin/parpg.bat.in Thu Jun 09 15:59:52 2011 +0200 @@ -2,4 +2,4 @@ SET PYTHONPATH=%PYTHONPATH%;"@PY_PACKAGES_DIR@" CD %~dp0 -START "@PYTHON@" -m parpg.main "@SYS_CONF_DIR@" %* \ No newline at end of file +@PYTHON@ -m parpg.main "@SYS_CONF_DIR@" %* \ No newline at end of file