You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
waf/waf-1.8.11-libdir.patch

14 lines
426 B

diff -up waf-1.8.11/waf-light.orig waf-1.8.11/waf-light
--- waf-1.8.11/waf-light.orig 2015-06-20 22:24:00.000000000 +0200
+++ waf-1.8.11/waf-light 2015-06-22 20:23:07.171667528 +0200
@@ -149,6 +149,9 @@ def find_lib():
w = test(i + '/lib/' + dirname)
if w: return w
+ w = test('/usr/share/%s' % WAF)
+ if w: return w
+
#waf-local
dir = join(base, (sys.platform != 'win32' and '.' or '') + dirname)
w = test(dir)