From 1ba50c59d1643ce4959cca5fa4aeb1410bee6de5 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 5 Jan 2013 10:08:04 +0000 Subject: !darwin != linux needed for BSD support. tools/sanity_check is Linux specific. git-svn-id: svn://localhost/ardour2/branches/3.0@13780 d708f5d6-7413-0410-9779-e7cbd77b26cf --- wscript | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index fc9b87748a..9a4b4dda76 100644 --- a/wscript +++ b/wscript @@ -46,12 +46,14 @@ i18n_children = [ 'libs/gtkmm2ext', ] -if sys.platform != 'darwin': +if sys.platform == 'linux': children += [ 'tools/sanity_check' ] lxvst_default = True -else: +elif sys.platform == 'darwin': children += [ 'libs/appleutility' ] lxvst_default = False +else: + lxvst_default = False # Version stuff -- cgit v1.2.3