summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-11-27 20:29:12 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-11-27 20:29:12 +0000
commit00b409b66147d8598aa30653531baaedc0b27064 (patch)
treeb75d286bcea0a6bb91aafd22d90ce5b0f7580633 /SConstruct
parent36bb879385c14042b468bec792ed3dfdc71bf8aa (diff)
fix for vamp-sdk botch in SConstruct; new audio clock focus command; make insert-region pay attention to entered track; different modifier list for gtk/osx; hide ye olde blue arrow on selected marker line
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2718 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct5
1 files changed, 2 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index 1336c53b08..fe58152877 100644
--- a/SConstruct
+++ b/SConstruct
@@ -438,9 +438,8 @@ def CheckPKGVersion(context, name, version):
def CheckPKGExists(context, name):
context.Message ('Checking for %s...' % name)
- ret = context.TryAction('pkg-config --exists %s' % name)
- print ("Result was [%s]" % ret[1])
- context.Result (ret[0])
+ ret = context.TryAction('pkg-config --exists %s' % name)[0]
+ context.Result (ret)
return ret
conf = Configure(env, custom_tests = { 'CheckPKGConfig' : CheckPKGConfig,