summaryrefslogtreecommitdiffstats
path: root/waflib/waf
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-04-21 20:25:10 +0200
committerDavid Robillard <d@drobilla.net>2019-04-21 22:44:20 +0200
commit0a0eb91349101d6e73a1bd83491f7d4dc993723e (patch)
treef4cb9ea615c2d9435679e363559e9367eac9ab06 /waflib/waf
parentf48f9d69a541d758dc9928c0c89eae46819e660f (diff)
downloadingen-0a0eb91349101d6e73a1bd83491f7d4dc993723e.tar.gz
ingen-0a0eb91349101d6e73a1bd83491f7d4dc993723e.tar.bz2
ingen-0a0eb91349101d6e73a1bd83491f7d4dc993723e.zip
Switch to using a submodule for autowaf
Diffstat (limited to 'waflib/waf')
m---------waflib0
-rwxr-xr-xwaflib/waf16
2 files changed, 0 insertions, 16 deletions
diff --git a/waflib b/waflib
new file mode 160000
+Subproject 2314e236ca6e7d94a26c3c17091da0f25f5867f
diff --git a/waflib/waf b/waflib/waf
deleted file mode 100755
index e22930a6..00000000
--- a/waflib/waf
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/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()