aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2007-11-16 07:00:30 +0000
committerThomas Heller <theller@ctypes.org>2007-11-16 07:00:30 +0000
commit1c8e5bc3b793597d2326d705119fb425d0ecf94d (patch)
tree6ed81d8d8c6a2aee2d76090c45af42146245f436 /Tools/buildbot
parentFixed an error in my last commit. The dll files are in the bin directory, not... (diff)
downloadcpython-1c8e5bc3b793597d2326d705119fb425d0ecf94d.tar.gz
cpython-1c8e5bc3b793597d2326d705119fb425d0ecf94d.tar.bz2
cpython-1c8e5bc3b793597d2326d705119fb425d0ecf94d.zip
Use 'del' instead of rmpyc.py to remove the pyc and pyo files.
Diffstat (limited to 'Tools/buildbot')
-rw-r--r--Tools/buildbot/clean-amd64.bat2
-rw-r--r--Tools/buildbot/clean.bat2
2 files changed, 2 insertions, 2 deletions
diff --git a/Tools/buildbot/clean-amd64.bat b/Tools/buildbot/clean-amd64.bat
index 7ef5e02fb67..6e83bd9e506 100644
--- a/Tools/buildbot/clean-amd64.bat
+++ b/Tools/buildbot/clean-amd64.bat
@@ -2,5 +2,5 @@
call "%VS71COMNTOOLS%vsvars32.bat"
cd PCbuild
@echo Deleting .pyc/.pyo files ...
-python.exe rmpyc.py
+del /s Lib\*.pyc Lib\*.pyo
devenv.com /clean ReleaseAMD64 pcbuild.sln
diff --git a/Tools/buildbot/clean.bat b/Tools/buildbot/clean.bat
index 19400a9f946..df50aff61b0 100644
--- a/Tools/buildbot/clean.bat
+++ b/Tools/buildbot/clean.bat
@@ -2,6 +2,6 @@
call "%VS71COMNTOOLS%vsvars32.bat"
cd PCbuild
@echo Deleting .pyc/.pyo files ...
-python_d.exe rmpyc.py
+del /s Lib\*.pyc Lib\*.pyo
devenv.com /clean Release pcbuild.sln
devenv.com /clean Debug pcbuild.sln