From faa3c06990a8c01b69d702a17b5dfc6107622ec9 Mon Sep 17 00:00:00 2001 From: stevenknight Date: Sat, 30 Aug 2003 16:08:56 +0000 Subject: [PATCH] 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 --- SConstruct | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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 -- 2.26.2