diff options
author | David Robillard <d@drobilla.net> | 2011-01-10 01:51:11 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-01-10 01:51:11 +0000 |
commit | 430d65fbd46bdfc130352aa91ee28017918990b6 (patch) | |
tree | e9769571c1a5988b23b791fac3109e5b01d8ab33 /wscript | |
parent | 378cfbf96708625e98280c4145d1dbdd9bb009b8 (diff) | |
download | raul-430d65fbd46bdfc130352aa91ee28017918990b6.tar.gz raul-430d65fbd46bdfc130352aa91ee28017918990b6.tar.bz2 raul-430d65fbd46bdfc130352aa91ee28017918990b6.zip |
Fix build on non-OSX.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2810 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -88,7 +88,7 @@ def build(bld): bld.install_files('${INCLUDEDIR}/raul', bld.path.ant_glob('raul/*.h')) # Pkgconfig file - dict = {} + dict = {'RAUL_PC_LIBS': ' '} if Options.platform == 'darwin': dict = {'RAUL_PC_LIBS': '-framework CoreServices'} autowaf.build_pc(bld, 'RAUL', RAUL_VERSION, 'GLIB GTHREAD', subst_dict=dict) |