diff options
author | David Robillard <d@drobilla.net> | 2020-04-09 12:12:33 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-04-09 12:13:04 +0200 |
commit | 887bad82ef5e3ba529be2c9d44d620b02752b0ae (patch) | |
tree | 66158640379f6a9e7b588833f3b3a8133b153a2b | |
parent | 3c29614ed1452868909840fc5307652ecc26d295 (diff) | |
download | patchage-887bad82ef5e3ba529be2c9d44d620b02752b0ae.tar.gz patchage-887bad82ef5e3ba529be2c9d44d620b02752b0ae.tar.bz2 patchage-887bad82ef5e3ba529be2c9d44d620b02752b0ae.zip |
Upgrade to waf 2.0.19
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | waf | 17 | ||||
m--------- | waflib | 0 |
3 files changed, 15 insertions, 4 deletions
@@ -10,7 +10,7 @@ patchage (1.0.1) unstable; * Restore messages pane visibility and height * Configure based on compiler target OS for cross-compilation * Fix compilation with Jack DBus - * Upgrade to waf 1.8.14 + * Upgrade to waf 2.0.19 -- David Robillard <d@drobilla.net> Fri, 14 Oct 2016 19:06:17 -0400 @@ -2,15 +2,26 @@ # Minimal waf script for projects that include waflib directly -from waflib import Context, Scripting - +import sys import inspect import os +try: + from waflib import Context, Scripting +except Exception as e: + sys.stderr.write('error: Failed to import waf (%s)\n' % e) + if os.path.exists('.git'): + sys.stderr.write("Are submodules up to date? " + "Try 'git submodule update --init --recursive'\n") + + sys.exit(1) + + def main(): script_path = os.path.abspath(inspect.getfile(inspect.getmodule(main))) - project_path = os.path.dirname(script_path) + project_path = os.path.dirname(os.path.realpath(script_path)) Scripting.waf_entry_point(os.getcwd(), Context.WAFVERSION, project_path) + if __name__ == '__main__': main() diff --git a/waflib b/waflib -Subproject de76b89dc1039e2f7d6c6b229a8950156b0e5c9 +Subproject f0bc33348b833b26697df5ba8cd1f9bf5dd9b3c |