From df03bcace008b8dcc77f595d2441790e77f4e707 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jir=CC=8Ci=CC=81=20Techet?= Date: Fri, 9 Jan 2015 01:35:43 +0100 Subject: [PATCH] waf: Don't relink scintilla and geany on every build The ant_glob() function doesn't return a list of strings but rather a list of waflib.Node.Nod3 objects. These print as paths so build works but apparently confuse waf which thinks the files have changed every time the waf command is performed. Relinking scintilla and geany on every waf invocation is especially problemmatic during "sudo waf install" where scintilla and geany binaries get owned by the root user. This isn't a big problem on Linux but on OS X this prevents subsequent waf calls to update the binaries and the build fails. To fix the issue, just convert the waflib.Node.Nod3 objects to relative (string) paths. --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index b53aa123..6b26c633 100644 --- a/wscript +++ b/wscript @@ -416,7 +416,7 @@ def build(bld): # Scintilla files = bld.srcnode.ant_glob('scintilla/**/*.cxx', src=True, dir=False) - scintilla_sources.update(files) + scintilla_sources.update([file.path_from(bld.srcnode) for file in files]) bld( features = ['c', 'cxx', 'cxxstlib'], name = 'scintilla',