diff options
author | David Robillard <d@drobilla.net> | 2018-09-15 11:35:44 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-15 11:35:44 +0200 |
commit | b2ad0b0bf7ab7c9916fca5d5ed4b7990a5e30d45 (patch) | |
tree | b3e36255a5f5ddca302fbe47e704be9e55231f10 /waf | |
parent | 6bdd956ebb486070aef76bce00772c785e91a4e2 (diff) | |
download | pugl-b2ad0b0bf7ab7c9916fca5d5ed4b7990a5e30d45.tar.gz pugl-b2ad0b0bf7ab7c9916fca5d5ed4b7990a5e30d45.tar.bz2 pugl-b2ad0b0bf7ab7c9916fca5d5ed4b7990a5e30d45.zip |
Replace symlink with minimal waf wrapper script
Diffstat (limited to 'waf')
-rwxr-xr-x[l---------] | waf | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -1 +1,16 @@ -waflib/waf
\ No newline at end of file +#!/usr/bin/env python + +# Minimal waf script for projects that include waflib directly + +from waflib import Context, Scripting + +import inspect +import os + +def main(): + script_path = os.path.abspath(inspect.getfile(inspect.getmodule(main))) + project_path = os.path.dirname(script_path) + Scripting.waf_entry_point(os.getcwd(), Context.WAFVERSION, project_path) + +if __name__ == '__main__': + main() |