]> granicus.if.org Git - python/commitdiff
Do not hardcode the buildbot's directory name.
authorThomas Heller <theller@ctypes.org>
Wed, 13 Jun 2007 07:07:03 +0000 (07:07 +0000)
committerThomas Heller <theller@ctypes.org>
Wed, 13 Jun 2007 07:07:03 +0000 (07:07 +0000)
Tools/buildbot/external-amd64.bat

index dac8cb3df8356537b0b0d45c540b58175aaa2535..b26faf4495754717552e76676ed3d723fec4fcd6 100644 (file)
@@ -7,19 +7,20 @@ call "%VS71COMNTOOLS%vsvars32.bat"
 call "%MSSdk%\SetEnv" /XP64 /RETAIL
 
 @rem Assume we start inside the Python source directory
+for %%i in (.) do set CWD=%%~fi
 cd ..
 
 @rem sqlite
 if not exist sqlite-source-3.3.4 (
    svn export http://svn.python.org/projects/external/sqlite-source-3.3.4
-   if exist build\PCbuild\sqlite3.dll del build\PCbuild\sqlite3.dll
+   if exist %CWD%\PCbuild\sqlite3.dll del %CWD%\PCbuild\sqlite3.dll
 )
-if not exist build\PCbuild\sqlite3.dll (
+if not exist %CWD%\PCbuild\sqlite3.dll (
    cd sqlite-source-3.3.4\amd64
    cl ..\*.c
    link /def:..\sqlite3.def  /dll *.obj /out:sqlite3.dll bufferoverflowU.lib
    cd ..\..
-   copy sqlite-source-3.3.4\amd64\sqlite3.dll build\PCbuild
+   copy sqlite-source-3.3.4\amd64\sqlite3.dll %CWD%\PCbuild
 )
 
 @rem bzip