diff options
author | Neil Conway <neilc@samurai.com> | 2007-01-25 19:48:33 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2007-01-25 19:48:33 +0000 |
commit | 74b6f73bc21fa438b48182adcb2e4d0b0eea8db2 (patch) | |
tree | 6f8876911e4d3bd5047ccb88238d4e5e226effa6 | |
parent | a5a1506c96a3e39a416ed4323d36bf74a27bb6d5 (diff) | |
download | postgresql-74b6f73bc21fa438b48182adcb2e4d0b0eea8db2.tar.gz postgresql-74b6f73bc21fa438b48182adcb2e4d0b0eea8db2.zip |
Add a setlocal command to the beginning of build.bat. This is required
to deal with buildenv.bat properly, so that PATH (for example) doesn't
expand infintly. Per report from Joachim Wieland, patch from Magnus.
-rwxr-xr-x | src/tools/msvc/build.bat | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/msvc/build.bat b/src/tools/msvc/build.bat index 8ef282cef49..fe736dde471 100755 --- a/src/tools/msvc/build.bat +++ b/src/tools/msvc/build.bat @@ -1,4 +1,5 @@ @echo off +SETLOCAL SET STARTDIR=%CD% if exist src\tools\msvc\buildenv.bat call src\tools\msvc\buildenv.bat if exist buildenv.bat call buildenv.bat |