diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2012-08-14 23:06:32 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2012-08-14 23:06:32 +0200 |
commit | de32b38992b8adbf7a6b83f580b2cb60fe7b98af (patch) | |
tree | a28c8b5245e0a0550e3165d945f3895b0e420d98 /tools/node-waf | |
parent | 22804a9eb88570b80295705da6620b68c3a6c69f (diff) | |
download | node-new-de32b38992b8adbf7a6b83f580b2cb60fe7b98af.tar.gz |
addon: remove node-waf, superseded by node-gyp
Diffstat (limited to 'tools/node-waf')
-rwxr-xr-x | tools/node-waf | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/tools/node-waf b/tools/node-waf deleted file mode 100755 index cbf0d0b804..0000000000 --- a/tools/node-waf +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env python -import os, sys - - -join = os.path.join -bindir = os.path.dirname(os.path.realpath(__file__)) -prefix = join(bindir, "..") -wafdir = join(prefix, "lib", "node") - -w = join(wafdir, 'wafadmin') -t = join(w, 'Tools') -sys.path = [w, t] + sys.path - -import Scripting -VERSION="1.5.16" -Scripting.prepare(t, os.getcwd(), VERSION, wafdir) -sys.exit(0) |