summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-11-29 23:04:27 +0000
committerCarl Hetherington <cth@carlh.net>2015-12-04 21:12:45 +0000
commit52a9ad82dc4df3a25bf2c8b01e4fd911801a5066 (patch)
tree75425eb74112b3980a29b562b088807499ae0f13 /wscript
parent07adacb4563972adc1ca445888ab20dceef8aa57 (diff)
Fix openjpeg library name for static link.
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 6d97dde2..807b20e0 100644
--- a/wscript
+++ b/wscript
@@ -62,7 +62,7 @@ def configure(conf):
if conf.options.static:
conf.check_cfg(package='libopenjp2', args='--cflags', atleast_version='2.1.0', uselib_store='OPENJPEG', mandatory=True)
- conf.env.STLIB_OPENJPEG = ['openjpeg']
+ conf.env.STLIB_OPENJPEG = ['openjp2']
conf.env.HAVE_CXML = 1
conf.env.STLIB_CXML = ['cxml']
else: