summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-11-06 19:59:00 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-11-06 19:59:00 +0000
commite9604e2173532a72493f093bb3843ed24e4e0df5 (patch)
treec0daf5697e030b0f005930856b8745e4170c27e4 /SConstruct
parentc860d925da575a9e233119c0e44fff64d130a62b (diff)
better error message if VST SDK is not installed and neeed
git-svn-id: svn://localhost/ardour2/trunk@1080 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 2 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index dc0deb7000..e242ac0faa 100644
--- a/SConstruct
+++ b/SConstruct
@@ -16,7 +16,7 @@ import SCons.Node.FS
SConsignFile()
EnsureSConsVersion(0, 96)
-version = '2.0beta6.2'
+version = '2.0beta7'
subst_dict = { }
@@ -706,7 +706,7 @@ conf = Configure (env)
have_cxx = conf.TryAction (Action (env['CXX'] + ' --version'))
if have_cxx[0] != 1:
print "This system has no functional C++ compiler. You cannot build Ardour from source without one."
- exit (1)
+ sys.exit (1)
else:
print "Congratulations, you have a functioning C++ compiler."