summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-02-10 14:05:29 -0800
committerRyan Dahl <ry@tinyclouds.org>2010-02-10 14:05:29 -0800
commitdc01587c6c648e842bb1780033596a3c3a587fbc (patch)
tree1eec571c9fb5169c784566902c965c5203d90eb8 /wscript
parentb6edae5671e24cc0b057096b4ab8beac083aea7b (diff)
parent3337e9da1ae6989c1815b02ad639cf9381a08db0 (diff)
downloadnodejs-dc01587c6c648e842bb1780033596a3c3a587fbc.tar.gz
nodejs-dc01587c6c648e842bb1780033596a3c3a587fbc.tar.bz2
nodejs-dc01587c6c648e842bb1780033596a3c3a587fbc.zip
Merge branch 'master' into net2
Diffstat (limited to 'wscript')
-rw-r--r--wscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/wscript b/wscript
index 2208bb721..31169e3db 100644
--- a/wscript
+++ b/wscript
@@ -7,7 +7,7 @@ from os.path import join, dirname, abspath
from logging import fatal
cwd = os.getcwd()
-VERSION="0.1.27"
+VERSION="0.1.28"
APPNAME="node.js"
import js2c
@@ -91,7 +91,7 @@ def conf_subproject (conf, subdir, command=None):
copytree(src, default_tgt, True)
if command:
- if os.system("cd %s && %s" % (default_tgt, command)) != 0:
+ if os.system("cd \"%s\" && %s" % (default_tgt, command)) != 0:
conf.fatal("Configuring %s failed." % (subdir))
debug_tgt = join(conf.blddir, "debug", subdir)
@@ -191,7 +191,7 @@ def build_udns(bld):
static_lib = bld.env["staticlib_PATTERN"] % "udns"
- rule = 'cd %s && make'
+ rule = 'cd "%s" && make'
default = bld.new_task_gen(
target= join("deps/udns", static_lib),
@@ -234,7 +234,7 @@ def v8_cmd(bld, variant):
else:
mode = "debug"
- cmd_R = 'python %s -C %s -Y %s visibility=default mode=%s %s library=static snapshot=on'
+ cmd_R = 'python "%s" -C "%s" -Y "%s" visibility=default mode=%s %s library=static snapshot=on'
cmd = cmd_R % ( scons
, bld.srcnode.abspath(bld.env_of_name(variant))