[PATCH] Typo in bootstrap.sh

Boost fails to install when LIBDIR isn't specified explicitly and isn't "/lib", due to a typo in bootstrap.sh. Trivial patch below. --- diff -purN orig/bootstrap.sh boost_1_39_0/bootstrap.sh --- orig/bootstrap.sh 2009-05-04 16:09:39.000000000 -0400 +++ boost_1_39_0/bootstrap.sh 2009-05-04 16:10:25.000000000 -0400 @@ -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 -- Matthew L. Creech

Matthew L. Creech wrote:
Boost fails to install when LIBDIR isn't specified explicitly and isn't "/lib", due to a typo in bootstrap.sh. Trivial patch below.
--- diff -purN orig/bootstrap.sh boost_1_39_0/bootstrap.sh --- orig/bootstrap.sh 2009-05-04 16:09:39.000000000 -0400 +++ boost_1_39_0/bootstrap.sh 2009-05-04 16:10:25.000000000 -0400 @@ -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
Thanks for report. This is already fixed in SVN HEAD. Sorry for the breakage. - Volodya
participants (2)
-
Matthew L. Creech
-
Vladimir Prus