waf: Don't relink scintilla and geany on every build
commitdf03bcace008b8dcc77f595d2441790e77f4e707
authorJiří Techet <techet@gmail.com>
Fri, 9 Jan 2015 00:35:43 +0000 (9 01:35 +0100)
committerJiří Techet <techet@gmail.com>
Fri, 9 Jan 2015 00:35:43 +0000 (9 01:35 +0100)
treed3a1cbf862c978e983ed2f950fe1d451f595841c
parentc131466a0035b0421e40661d50181db1ca8de3f6
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