From: stevenknight Date: Thu, 12 Jul 2001 11:05:29 +0000 (+0000) Subject: Change the dependencies so we unpack the .tar.gz file for testing X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=613a5e82788bb8e32e0044ab4f0a1455ec4fc886;p=scons.git Change the dependencies so we unpack the .tar.gz file for testing whenever any source file changes, not just __init__.py. git-svn-id: http://scons.tigris.org/svn/scons/trunk@6 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/Construct b/Construct index bf77bb75..4cc3c460 100644 --- a/Construct +++ b/Construct @@ -79,7 +79,9 @@ Depends $env [@targets], 'build/MANIFEST'; # $test_dir = "build/test"; -Command $env "$test_dir/$project-$version/$project/__init__.py", $tar_gz, qq( +@test_files = map("$test_dir/$project-$version/$_", @files); + +Command $env [@test_files], $tar_gz, qq( rm -rf $test_dir/$project-$version tar zxf %< -C $test_dir );