From 87a287aaf78c3cd7ae7b6328f0d4c5bae50fb7c7 Mon Sep 17 00:00:00 2001 From: Vladimir Molokov Date: Fri, 27 Mar 2020 21:26:15 +0100 Subject: Fix building plugins as independent projects --- waf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'waf') diff --git a/waf b/waf index e22930a..305e321 100755 --- a/waf +++ b/waf @@ -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__': -- cgit v1.2.1