diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-05-11 10:25:27 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-05-11 10:25:27 -0700 |
commit | f7ff548dd01c18f14e6f23c5d6ab628e00c429da (patch) | |
tree | 6414c5de24661f952ac7b1695e158fe16023eb7d /configure | |
parent | c90e44e582385e36c3ac1618f6f4782f7a60617a (diff) | |
download | nodejs-f7ff548dd01c18f14e6f23c5d6ab628e00c429da.tar.gz nodejs-f7ff548dd01c18f14e6f23c5d6ab628e00c429da.tar.bz2 nodejs-f7ff548dd01c18f14e6f23c5d6ab628e00c429da.zip |
Quote variables in configure script
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -11,10 +11,10 @@ CUR_DIR=$PWD #possible relative path WORKINGDIR=`dirname $0` -cd $WORKINGDIR +cd "$WORKINGDIR" #abs path WORKINGDIR=`pwd` -cd $CUR_DIR +cd "$CUR_DIR" "${WORKINGDIR}/tools/waf-light" --jobs=1 configure $* |