diff options
author | David Robillard <d@drobilla.net> | 2020-07-02 00:39:34 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-07-02 00:39:34 +0200 |
commit | 14d9ddc7441f401117bdf27663a5ddf9237425d2 (patch) | |
tree | adb225c42533f52bcc8d4274d46bee27c182b4fc | |
parent | e87bb398f025912fb989a09f1450b838b251aea1 (diff) | |
download | raul-14d9ddc7441f401117bdf27663a5ddf9237425d2.tar.gz raul-14d9ddc7441f401117bdf27663a5ddf9237425d2.tar.bz2 raul-14d9ddc7441f401117bdf27663a5ddf9237425d2.zip |
Update waf to add git submodule error message
-rwxr-xr-x | waf | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -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() |