summaryrefslogtreecommitdiff
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorMark Slee <mcslee@apache.org>2007-03-08 01:22:46 +0000
committerMark Slee <mcslee@apache.org>2007-03-08 01:22:46 +0000
commit4c91e554185e25d81ca2026070e3f6d7d13ac819 (patch)
treead1391af6be3dbdb44bc3a76f2687d4cfbc2e98a /bootstrap.sh
parent227ac2c50e11f3d70ca13d811b044fb9e2a528cc (diff)
downloadthrift-4c91e554185e25d81ca2026070e3f6d7d13ac819.tar.gz
Fix cleanup and bootstrap
Summary: spaces in directory names should work Reviewed By: aditya git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665054 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index f5d5c4e63..59e0007b8 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -13,9 +13,9 @@ automake -ac
for subdir in ${subdirs}; do
if [ -x "${subdir}/bootstrap.sh" ]; then
cwd="`pwd`"
- cd ${subdir}
+ cd "${subdir}"
./bootstrap.sh
- cd ${cwd}
+ cd "${cwd}"
fi
done