!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
This commit is contained in:
parent
72393f101b
commit
1ba50c59d1
6
wscript
6
wscript
@ -46,12 +46,14 @@ i18n_children = [
|
|||||||
'libs/gtkmm2ext',
|
'libs/gtkmm2ext',
|
||||||
]
|
]
|
||||||
|
|
||||||
if sys.platform != 'darwin':
|
if sys.platform == 'linux':
|
||||||
children += [ 'tools/sanity_check' ]
|
children += [ 'tools/sanity_check' ]
|
||||||
lxvst_default = True
|
lxvst_default = True
|
||||||
else:
|
elif sys.platform == 'darwin':
|
||||||
children += [ 'libs/appleutility' ]
|
children += [ 'libs/appleutility' ]
|
||||||
lxvst_default = False
|
lxvst_default = False
|
||||||
|
else:
|
||||||
|
lxvst_default = False
|
||||||
|
|
||||||
# Version stuff
|
# Version stuff
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user