[pywin32-checkins] pywin32/AutoDuck make.bat,1.5,1.6
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-05-24 08:18:21
|
Update of /cvsroot/pywin32/pywin32/AutoDuck In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10142 Modified Files: make.bat Log Message: Make it usually magically work on amd64 archs. Index: make.bat =================================================================== RCS file: /cvsroot/pywin32/pywin32/AutoDuck/make.bat,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** make.bat 17 Apr 2002 14:06:19 -0000 1.5 --- make.bat 24 May 2008 08:18:27 -0000 1.6 *************** *** 6,9 **** --- 6,11 ---- if exist "\Program files\HTML Help Workshop\hhc.exe" set HHC="\Program files\HTML Help Workshop\hhc.exe" & goto doit if exist "C:\Program files\HTML Help Workshop\hhc.exe" set HHC="C:\Program files\HTML Help Workshop\hhc.exe" & goto doit + if exist "\Program files (x86)\HTML Help Workshop\hhc.exe" set HHC="\Program files (x86)\HTML Help Workshop\hhc.exe" & goto doit + if exist "C:\Program files (x86)\HTML Help Workshop\hhc.exe" set HHC="C:\Program files (x86)\HTML Help Workshop\hhc.exe" & goto doit echo Can not locate HHC.EXE - please set the HHC environment to point to the .exe |