mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
355 B
18 lines
355 B
15 years ago
|
#!/usr/bin/env python
|
||
|
import os, sys
|
||
|
|
||
|
|
||
|
join = os.path.join
|
||
15 years ago
|
bindir = os.path.dirname(os.path.realpath(__file__))
|
||
15 years ago
|
prefix = join(bindir, "..")
|
||
|
wafdir = join(prefix, "lib", "node")
|
||
|
|
||
|
w = join(wafdir, 'wafadmin')
|
||
|
t = join(w, 'Tools')
|
||
|
sys.path = [w, t] + sys.path
|
||
|
|
||
|
import Scripting
|
||
15 years ago
|
VERSION="1.5.16"
|
||
15 years ago
|
Scripting.prepare(t, os.getcwd(), VERSION, wafdir)
|
||
|
sys.exit(0)
|