summaryrefslogtreecommitdiff
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorVladimir Prus <ghost@cs.msu.su>2009-05-15 05:35:07 +0000
committerVladimir Prus <ghost@cs.msu.su>2009-05-15 05:35:07 +0000
commit0f9b85146388ea83402cd367da09873b1b8bd889 (patch)
tree21a5cfa2360d73384e1c3fe8ec4401cd6dca32f3 /bootstrap.sh
parent799e03eb6bc3a4cce7d7349f99842dd2dc91b038 (diff)
downloadboost-0f9b85146388ea83402cd367da09873b1b8bd889.tar.gz
Merge bootstrap.sh fixes
[SVN r53017]
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index c92b327404..c59d8e56fb 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -216,11 +216,11 @@ if test "x$BJAM" = x; then
echo -n "Building Boost.Jam with toolset $TOOLSET... "
pwd=`pwd`
cd "$my_dir/tools/jam/src" && ./build.sh "$TOOLSET" > config.log 2>&1
- cd $pwd
+ cd "$pwd"
arch=`cd $my_dir/tools/jam/src && ./bootstrap/jam0 -d0 -f build.jam --toolset=$TOOLSET --toolset-root= --show-locate-target && cd ..`
BJAM="$my_dir/tools/jam/src/$arch/bjam"
echo "tools/jam/src/$arch/bjam"
- cp $BJAM .
+ cp "$BJAM" .
fi
# TBD: Turn BJAM into an absolute path
@@ -249,7 +249,7 @@ if test "x$EPREFIX" = x; then
fi
if test "x$LIBDIR" = x; then
- LIBDIR="$EXPREFIX/lib"
+ LIBDIR="$EPREFIX/lib"
fi
if test "x$INCLUDEDIR" = x; then