[Commits] (heikki) Fix clobber,
even though we are not using it at the moment.
commits at osafoundation.org
commits at osafoundation.org
Fri Aug 27 23:08:03 PDT 2004
Commit by: heikki
Modified files:
hardhat/buildscripts/fullchandler.py 1.6 1.7
Log message:
Fix clobber, even though we are not using it at the moment.
ViewCVS links:
http://cvs.osafoundation.org/index.cgi/hardhat/buildscripts/fullchandler.py.diff?r1=text&tr1=1.6&r2=text&tr2=1.7
Index: hardhat/buildscripts/fullchandler.py
diff -u hardhat/buildscripts/fullchandler.py:1.6 hardhat/buildscripts/fullchandler.py:1.7
--- hardhat/buildscripts/fullchandler.py:1.6 Fri Aug 27 23:03:46 2004
+++ hardhat/buildscripts/fullchandler.py Fri Aug 27 23:08:02 2004
@@ -62,10 +62,10 @@
# make sure workingDir is absolute
workingDir = os.path.abspath(workingDir)
chanDir = os.path.join(workingDir, 'chandler')
- # test if we've been thruough the loop at least once
+ # test if we've been through the loop at least once
if clobber:
for module in cvsModules:
- modDir = os.path.exists(os.path.join(workingDir, module))
+ modDir = os.path.join(workingDir, module)
if os.path.exists(modDir):
hardhatutil.rmdirRecursive(modDir)
More information about the Commits
mailing list