<html>
<head>
<base href="https://bugs.freedesktop.org/">
</head>
<body>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - Generation of glib API documentation fails with gtk-doc 1.27"
href="https://bugs.freedesktop.org/show_bug.cgi?id=105075#c4">Comment # 4</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - Generation of glib API documentation fails with gtk-doc 1.27"
href="https://bugs.freedesktop.org/show_bug.cgi?id=105075">bug 105075</a>
from <span class="vcard"><a class="email" href="mailto:aacid@kde.org" title="Albert Astals Cid <aacid@kde.org>"> <span class="fn">Albert Astals Cid</span></a>
</span></b>
<pre>Doesn't work for me
I had to use
@@ -319,9 +327,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', ''))
Does this work for you too?</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>