summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-11-09 18:19:47 +0100
committerDavid Robillard <d@drobilla.net>2019-11-09 18:19:47 +0100
commit6cc5bc3ac0222116f65e444af5ad76cdee3754eb (patch)
treed9118f5d74e5d271b47db0972bf549319b903959 /wscript
parent74dbe92658a1d5e49509d0918d8498744a87214d (diff)
downloadsord-6cc5bc3ac0222116f65e444af5ad76cdee3754eb.tar.gz
sord-6cc5bc3ac0222116f65e444af5ad76cdee3754eb.tar.bz2
sord-6cc5bc3ac0222116f65e444af5ad76cdee3754eb.zip
Fix pkg-config dependencies
Diffstat (limited to 'wscript')
-rw-r--r--wscript5
1 files changed, 3 insertions, 2 deletions
diff --git a/wscript b/wscript
index ccd6c73..6bf0695 100644
--- a/wscript
+++ b/wscript
@@ -101,8 +101,9 @@ def build(bld):
bld.install_files(includedir, bld.path.ant_glob('sord/*.hpp'))
# Pkgconfig file
- autowaf.build_pc(bld, 'SORD', SORD_VERSION, SORD_MAJOR_VERSION, 'SERD',
- {'SORD_MAJOR_VERSION' : SORD_MAJOR_VERSION})
+ autowaf.build_pc(bld, 'SORD', SORD_VERSION, SORD_MAJOR_VERSION, [],
+ {'SORD_MAJOR_VERSION' : SORD_MAJOR_VERSION,
+ 'SORD_PKG_DEPS' : 'serd-0'})
source = 'src/sord.c src/syntax.c'