Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: Enrico Tröger enrico.troeger@uvena.de Date: Tue, 14 Apr 2015 20:01:45 UTC Commit: 31ae06f7e59993c2a6d2ef7d96db1b48e9787fae https://github.com/geany/geany/commit/31ae06f7e59993c2a6d2ef7d96db1b48e9787f...
Log Message: ----------- Merge pull request #466 from techee/waf_build_tree
waf: explicitly set the location of signallist.i and geany.html in the b...
Modified Paths: -------------- wscript
Modified: wscript 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -480,7 +480,7 @@ def build(bld): # signallist.i bld( source = 'data/geany.glade', - target = 'src/signallist.i', + target = bld.path.get_bld().make_node('src/signallist.i'), name = 'signallist.i', rule = gen_signallist)
@@ -539,7 +539,7 @@ def build(bld): bld( source = ['doc/geany.txt'], deps = ['doc/geany.css'], - target = 'doc/geany.html', + target = bld.path.get_bld().make_node('doc/geany.html'), name = 'geany.html', cwd = os.path.join(bld.path.abspath(), 'doc'), rule = '%s -stg --stylesheet=geany.css geany.txt %s' % (rst2html, html_doc_filename))
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).