Adjust python path for windows batches.

This commit is contained in:
Bastian Kleineidam 2010-07-30 19:46:58 +02:00
parent b5a80bf686
commit c8b6d6c0ee
4 changed files with 5 additions and 5 deletions

View file

@ -14,7 +14,7 @@
:: with this program; if not, write to the Free Software Foundation, Inc.,
:: 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
@echo off
set PYDIR=C:\Python26
set PYDIR=E:\Python26
%PYDIR%\python.exe setup.py sdist --manifest-only
%PYDIR%\python.exe setup.py build -c mingw32
copy build\lib.win32-2.6\linkcheck\HtmlParser\htmlsax.pyd linkcheck\HtmlParser

View file

@ -14,7 +14,7 @@
:: with this program; if not, write to the Free Software Foundation, Inc.,
:: 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
@echo off
set PYDIR=C:\Python26
set PYDIR=E:\Python26
%PYDIR%\python.exe setup.py clean --all
del linkcheck\HtmlParser\htmlsax.pyd
del linkcheck\network\_network.pyd

View file

@ -14,7 +14,7 @@
:: with this program; if not, write to the Free Software Foundation, Inc.,
:: 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
@echo off
set PYDIR=C:\Python26
set PYDIR=E:\Python26
rd /S /Q build
call build.bat
rd /S /Q dist

View file

@ -14,6 +14,6 @@
:: with this program; if not, write to the Free Software Foundation, Inc.,
:: 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
@echo off
set PYDIR=C:\Python26
%PYDIR%\scripts\nosetests -v -m "^test_.*" tests/
set PYDIR=E:\Python26
%PYDIR%\python.exe %PYDIR%\scripts\nosetests -v -m "^test_.*" tests/
pause