From: stevenknight Date: Sat, 30 Aug 2003 16:08:56 +0000 (+0000) Subject: Fix unpacking the .zip packages even if there are no source changes. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=faa3c06990a8c01b69d702a17b5dfc6107622ec9;p=scons.git Fix unpacking the .zip packages even if there are no source changes. git-svn-id: http://scons.tigris.org/svn/scons/trunk@785 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/SConstruct b/SConstruct index 9979695d..e1cb3415 100644 --- a/SConstruct +++ b/SConstruct @@ -642,7 +642,10 @@ for p in [ scons ]: os.path.join(u, pv, x), src_files) - env.Command(unpack_zip_files, zip, unzipit) + env.Command(unpack_zip_files, zip, [ + "rm -rf %s" % os.path.join(unpack_zip_dir, pkg_version), + unzipit + ]) # # Run setup.py in the unpacked subdirectory to "install" everything @@ -1013,7 +1016,10 @@ if change: os.path.join(u, psv, x), sfiles) - env.Command(unpack_zip_files, src_zip, unzipit) + env.Command(unpack_zip_files, src_zip, [ + "rm -rf %s" % os.path.join(unpack_zip_dir, psv), + unzipit + ]) # # Run setup.py in the unpacked subdirectory to "install" everything