From 0d3be1bac1e8d3c3edb574ef918cc44c24286f0b Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Sat, 30 Aug 2003 16:08:56 +0000 Subject: Fix unpacking the .zip packages even if there are no source changes. --- SConstruct | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index 9979695..e1cb341 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 -- cgit v0.12