summaryrefslogtreecommitdiff
path: root/bootstrap.sh
diff options
context:
space:
mode:
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