summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-06-18 00:47:49 +0100
committerCarl Hetherington <cth@carlh.net>2016-06-18 00:47:49 +0100
commit7c432ab969babc6329b9b4fc6f9ea1d39aa25a53 (patch)
tree84a0a0cd87caed74a47a8b991337476ba66f81fc /cscript
parent19c3a350c179b7e2055978ad1c41559da99a77b3 (diff)
Try to fix 64-bit centos link of nettle.
Diffstat (limited to 'cscript')
-rw-r--r--cscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/cscript b/cscript
index 5fe8a4047..beafafc95 100644
--- a/cscript
+++ b/cscript
@@ -203,7 +203,7 @@ def make_spec(filename, version, target):
print('tar xjf $RPM_SOURCE_DIR/dcpomatic-%s.tar.bz2' % version, file=f)
print('%build', file=f)
print('cd dcpomatic-%s' % version, file=f)
- print('export PKG_CONFIG_PATH=%s/lib/pkgconfig:%s/lib64/pkgconfig:/usr/local/lib/pkgconfig' % (target.directory, target.directory), file=f)
+ print('export PKG_CONFIG_PATH=%s/lib/pkgconfig:%s/lib64/pkgconfig:/usr/local/lib/pkgconfig:/usr/local/lib64/pkgconfig' % (target.directory, target.directory), file=f)
if target.distro == 'centos' and target.version == '5':
prefix = 'BUILDROOT/usr'