[poppler] gtkdoc.py
Albert Astals Cid
aacid at kemper.freedesktop.org
Sun Feb 18 22:05:05 UTC 2018
gtkdoc.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 791e024656212c65d798cb69a134cdd3e30cc79e
Author: Albert Astals Cid <aacid at kde.org>
Date: Sun Feb 18 23:05:59 2018 +0100
Make it work with newer gtk-doc
Hopefully still works with older versions
Bug #105075
diff --git a/gtkdoc.py b/gtkdoc.py
index 5440e28d..cc73ffc1 100644
--- a/gtkdoc.py
+++ b/gtkdoc.py
@@ -326,9 +326,9 @@ class GTKDoc(object):
ldflags = ' "-L%s" %s ' % (self.library_path, additional_ldflags) + ldflags
current_ld_library_path = env.get('LD_LIBRARY_PATH')
if current_ld_library_path:
- env['RUN'] = 'LD_LIBRARY_PATH="%s:%s" ' % (self.library_path, current_ld_library_path)
+ env['LD_LIBRARY_PATH'] = '%s:%s' % (self.library_path, current_ld_library_path)
else:
- env['RUN'] = 'LD_LIBRARY_PATH="%s" ' % self.library_path
+ env['LD_LIBRARY_PATH'] = self.library_path
if ldflags:
env['LDFLAGS'] = '%s %s' % (ldflags, env.get('LDFLAGS', ''))
More information about the poppler
mailing list