aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVladimir Molokov <vladimir.molokov@gmail.com>2020-03-27 21:26:15 +0100
committerDavid Robillard <d@drobilla.net>2020-03-28 17:02:04 +0100
commit87a287aaf78c3cd7ae7b6328f0d4c5bae50fb7c7 (patch)
treec267b98bf22779ff51a51c83b91aa18b998c58a6
parent81e1b3c2eaf52a7e4beb87e136f6c672ab239759 (diff)
downloadlv2-87a287aaf78c3cd7ae7b6328f0d4c5bae50fb7c7.tar.xz
Fix building plugins as independent projects
-rwxr-xr-xwaf2
1 files changed, 1 insertions, 1 deletions
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__':