diff options
author | David Robillard <d@drobilla.net> | 2020-04-02 20:51:37 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-04-02 20:53:37 +0200 |
commit | 9c750a5fd75b7b63032f8369cf63fbfdcdf0157f (patch) | |
tree | 7f4c65c28e6ba92be8bc7c6a23254d74eb97787f /waf | |
parent | ac77923e2233547122343c9dcdb89be81bde896b (diff) | |
download | pugl-9c750a5fd75b7b63032f8369cf63fbfdcdf0157f.tar.gz pugl-9c750a5fd75b7b63032f8369cf63fbfdcdf0157f.tar.bz2 pugl-9c750a5fd75b7b63032f8369cf63fbfdcdf0157f.zip |
Switch to a submodule for autowaf and update to waf 2.0.19
Diffstat (limited to 'waf')
-rwxr-xr-x | waf | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -0,0 +1,27 @@ +#!/usr/bin/env python + +# Minimal waf script for projects that include waflib directly + +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(os.path.realpath(script_path)) + Scripting.waf_entry_point(os.getcwd(), Context.WAFVERSION, project_path) + + +if __name__ == '__main__': + main() |