diff options
-rwxr-xr-x | waf | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ import os 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__': |