Staging
v0.5.1
https://github.com/python/cpython
Revision 49be804b506f8fa7e8789f4b94f5b9ee68e7d7fc authored by Martin v. Löwis on 29 May 2009, 16:05:08 UTC, committed by Martin v. Löwis on 29 May 2009, 16:05:08 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r73018 | martin.v.loewis | 2009-05-29 18:01:34 +0200 (Fr, 29 Mai 2009) | 9 lines

  Merged revisions 73016 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r73016 | martin.v.loewis | 2009-05-29 17:58:08 +0200 (Fr, 29 Mai 2009) | 2 lines

    Issue #4873: Fix resource leaks in error cases of pwd and grp.
  ........
................
1 parent c2207c0
Raw File
Tip revision: 49be804b506f8fa7e8789f4b94f5b9ee68e7d7fc authored by Martin v. Löwis on 29 May 2009, 16:05:08 UTC
Merged revisions 73018 via svnmerge from
Tip revision: 49be804
build.bat
@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=

: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
if "%1"=="-d" (set conf=Debug) & shift & goto CheckOpts

set cmd=vcbuild /useenv pcbuild.sln %build% "%conf%|%platf%"
echo %cmd%
%cmd%
back to top