aboutsummaryrefslogtreecommitdiffstats
path: root/waf
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-15 11:35:44 +0200
committerDavid Robillard <d@drobilla.net>2018-09-15 11:35:44 +0200
commitb2ad0b0bf7ab7c9916fca5d5ed4b7990a5e30d45 (patch)
treeb3e36255a5f5ddca302fbe47e704be9e55231f10 /waf
parent6bdd956ebb486070aef76bce00772c785e91a4e2 (diff)
downloadpugl-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---------]waf17
1 files changed, 16 insertions, 1 deletions
diff --git a/waf b/waf
index 59d3164..e22930a 120000..100755
--- a/waf
+++ b/waf
@@ -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()