diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-02-25 14:19:48 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-02-25 14:19:48 (GMT) |
commit | 7f1e174c7a0cc4e9f5ca40a22ac13f4bd53467ec (patch) | |
tree | c33e7e3e8da75d1ad2ba29a6dbed5e1c1d2ca3b8 /PC/VS8.0/build.bat | |
parent | 2ec8cbc75fb6482aa00f998d53a39a812d1e34bc (diff) | |
download | cpython-7f1e174c7a0cc4e9f5ca40a22ac13f4bd53467ec.zip cpython-7f1e174c7a0cc4e9f5ca40a22ac13f4bd53467ec.tar.gz cpython-7f1e174c7a0cc4e9f5ca40a22ac13f4bd53467ec.tar.bz2 |
Make svn:eol-style's more consistent
Diffstat (limited to 'PC/VS8.0/build.bat')
-rw-r--r-- | PC/VS8.0/build.bat | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/PC/VS8.0/build.bat b/PC/VS8.0/build.bat index a6d961e..9bc8186 100644 --- a/PC/VS8.0/build.bat +++ b/PC/VS8.0/build.bat @@ -1,17 +1,17 @@ -@echo off
-rem A batch program to build or rebuild a particular configuration.
-rem just for convenience.
-
-setlocal
-set platf=Win32
-set conf=Release
-set build=/build
-
-:CheckOpts
-if "%1"=="-c" (set conf=%2) & shift & shift & goto CheckOpts
-if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts
-if "%1"=="-r" (set build=/rebuild) & shift & goto CheckOpts
-
-set cmd=devenv pcbuild.sln %build% "%conf%|%platf%"
-echo %cmd%
-%cmd%
+@echo off +rem A batch program to build or rebuild a particular configuration. +rem just for convenience. + +setlocal +set platf=Win32 +set conf=Release +set build=/build + +:CheckOpts +if "%1"=="-c" (set conf=%2) & shift & shift & goto CheckOpts +if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts +if "%1"=="-r" (set build=/rebuild) & shift & goto CheckOpts + +set cmd=devenv pcbuild.sln %build% "%conf%|%platf%" +echo %cmd% +%cmd% |