diff options
author | David Robillard <d@drobilla.net> | 2020-04-02 19:06:52 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-04-02 19:06:52 +0200 |
commit | 4ad9fa89c873c232e48fe5b6ce40ca0fe2cac4a7 (patch) | |
tree | bd8ee1fcb9ec69a0612cc8a5edacd838ec07c0a1 | |
parent | 697d367fc93bffe5bdf542e5ae8f8919d83fefd0 (diff) | |
download | autowaf-4ad9fa89c873c232e48fe5b6ce40ca0fe2cac4a7.tar.gz autowaf-4ad9fa89c873c232e48fe5b6ce40ca0fe2cac4a7.tar.bz2 autowaf-4ad9fa89c873c232e48fe5b6ce40ca0fe2cac4a7.zip |
Fix building subprojects in their own directories
-rwxr-xr-x | waf | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ except Exception as e: 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) |