summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-02-03 23:10:19 +0000
committerCarl Hetherington <cth@carlh.net>2019-12-03 17:01:32 +0100
commit22cfc449c60d0e10c7be84f3c19b132117c63558 (patch)
tree10e5551863f131ca8ced71dc094931ebc6a7b00f /wscript
parent6c88c6eaf593dcf2aae70b829bbcc5e0d236ad17 (diff)
Missing edit to libasdcp-cth.pc.in.
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/wscript b/wscript
index 869e499..89f2709 100644
--- a/wscript
+++ b/wscript
@@ -63,16 +63,16 @@ def configure(conf):
def build(bld):
if bld.env.TARGET_WINDOWS:
boost_lib_suffix = '-mt'
- cflags = '-DKM_WIN32'
+ flags = '-DKM_WIN32'
else:
boost_lib_suffix = ''
- cflags = ''
+ flags = ''
bld(source='libasdcp-cth.pc.in',
version=VERSION,
includedir='%s/include/libasdcp-cth' % bld.env.PREFIX,
libs="-L${libdir} -lasdcp-cth -lkumu-cth -lboost_system%s" % boost_lib_suffix,
- cflags=cflags,
+ cflags=flags,
install_path='${LIBDIR}/pkgconfig')
bld.recurse('src')