From 71c7bd6a82b09126699b204b40b2c95b8ae3d4da Mon Sep 17 00:00:00 2001 From: Ichthyostega Date: Thu, 14 Feb 2008 16:14:12 +0100 Subject: [PATCH] don't build testsuite for default target 'build' > (use 'scons testcode' or 'scons check' for this) --- SConstruct | 2 +- src/main.cpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index 88c5dcb97..5dc55580a 100644 --- a/SConstruct +++ b/SConstruct @@ -264,7 +264,7 @@ def definePostBuildTargets(env, artifacts): il = env.Alias('install-lib', '$DESTDIR/lib') env.Alias('install', [ib, il]) - build = env.Alias('build', '$BINDIR') + build = env.Alias('build', artifacts['cinelerra']+artifacts['plugins']) allbu = env.Alias('allbuild', build+artifacts['testsuite']) env.Default('build') # additional files to be cleaned when cleaning 'build' diff --git a/src/main.cpp b/src/main.cpp index 746a02965..18384f0c7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -31,7 +31,6 @@ int main (int argc, char* argv[]) { cout << "*** Cinelerra NLE for Linux ***" << endl << " hello SCONS build system" << endl; - assert(true); return 0; }