diff options
author | Daniel Burrows <dburrows@debian.org> | 2010-04-24 14:01:05 -0700 |
---|---|---|
committer | Daniel Burrows <dburrows@debian.org> | 2010-04-24 14:01:05 -0700 |
commit | 882e62b0bf7dbaf6a49640152dba31733ee81813 (patch) | |
tree | 966331be05b5d6d4d69c7d3d07ff0f903640dd74 /SConstruct | |
parent | 42eea8ac2a6dd4f9c916599b6103e77221fe9ab7 (diff) | |
download | aptitude-882e62b0bf7dbaf6a49640152dba31733ee81813.tar.gz |
Change build/.../test to build/.../tests to match the source tree.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ for variant_env in envs.programs.AllVariantEnvs(): # always have the same number of entries in the two lists. for cppunit_tests_env, boost_tests_env in zip(envs.cppunit_tests.AllVariantEnvs(), envs.boost_tests.AllVariantEnvs()): Export(cppunit_tests_env = cppunit_tests_env, boost_tests_env = boost_tests_env) - SConscript(['tests/SConscript'], variant_dir = 'build/%s/test' % variant_env.GetVariantName()) + SConscript(['tests/SConscript'], variant_dir = 'build/%s/tests' % variant_env.GetVariantName()) AlwaysBuild('test') # For convenience, make "scons check" the same as "make check". Alias('check', 'test') |