Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-05-11 21:25:27 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-05-11 21:25:27 +0400
commitf7ff548dd01c18f14e6f23c5d6ab628e00c429da (patch)
tree6414c5de24661f952ac7b1695e158fe16023eb7d /configure
parentc90e44e582385e36c3ac1618f6f4782f7a60617a (diff)
Quote variables in configure script
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 7267f64eb09..de002e39b26 100755
--- a/configure
+++ b/configure
@@ -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 $*