diff options
author | Steven Knight <knight@baldmt.com> | 2003-10-12 12:44:26 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-10-12 12:44:26 (GMT) |
commit | 57a6a5147897525742331568d9538371c7260cf8 (patch) | |
tree | d5fc001207fc31829a2bdb8d377b691a2f24e040 /src/script/scons.bat | |
parent | 34f47299ed9fa4eb468201ae6e5cb4e0523a3dc2 (diff) | |
download | SCons-57a6a5147897525742331568d9538371c7260cf8.zip SCons-57a6a5147897525742331568d9538371c7260cf8.tar.gz SCons-57a6a5147897525742331568d9538371c7260cf8.tar.bz2 |
More flexible RPM building. (Gerard Patel) Have scripts look for the build engine in the site-packages subdirectory as wel. (Charles Crain)
Diffstat (limited to 'src/script/scons.bat')
-rw-r--r-- | src/script/scons.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script/scons.bat b/src/script/scons.bat index d2770c6..782d8c4 100644 --- a/src/script/scons.bat +++ b/src/script/scons.bat @@ -1,11 +1,11 @@ @echo off if "%OS%" == "Windows_NT" goto WinNT REM for 9x/Me you better not have more than 9 args -python -c "from os.path import join; import sys; sys.path = [ join(sys.prefix, 'scons-__VERSION__'), join(sys.prefix, 'scons')] + sys.path; import SCons.Script; SCons.Script.main()" %1 %2 %3 %4 %5 %6 %7 %8 %9 +python -c "from os.path import join; import sys; sys.path = [ join(sys.prefix, 'Lib', 'site-packages', 'scons-__VERSION__'), join(sys.prefix, 'Lib', 'site-packages', 'scons'), join(sys.prefix, 'scons-__VERSION__'), join(sys.prefix, 'scons')] + sys.path; import SCons.Script; SCons.Script.main()" %1 %2 %3 %4 %5 %6 %7 %8 %9 REM no way to set exit status of this script for 9x/Me goto endscons :WinNT -python -c "from os.path import join; import sys; sys.path = [ join(sys.prefix, 'scons-__VERSION__'), join(sys.prefix, 'scons')] + sys.path; import SCons.Script; SCons.Script.main()" %* +python -c "from os.path import join; import sys; sys.path = [ join(sys.prefix, 'Lib', 'site-packages', 'scons-__VERSION__'), join(sys.prefix, 'Lib', 'site-packages', 'scons'), join(sys.prefix, 'scons-__VERSION__'), join(sys.prefix, 'scons')] + sys.path; import SCons.Script; SCons.Script.main()" %* if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endscons if errorlevel 9009 echo you do not have python in your PATH REM color 00 causes this script to exit with non-zero exit status |