0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-28 16:34:13 +01:00

configure: Fix erroneous space near BOOST_LDFLAGS.

This commit is contained in:
Jason Volk 2017-08-23 14:31:34 -06:00
parent 823387da4e
commit 380d988e97

View file

@ -610,7 +610,7 @@ AC_HELP_STRING([--with-included-boost[[[=shared]]]], [Use the boost sources from
AC_MSG_CHECKING([whether to use shared boost]) AC_MSG_CHECKING([whether to use shared boost])
if [[ $withval = "shared" ]]; then if [[ $withval = "shared" ]]; then
AC_MSG_RESULT([yes]) AC_MSG_RESULT([yes])
BOOST_LDFLAGS += " -Wl,-rpath=$boost_libdir" BOOST_LDFLAGS+=" -Wl,-rpath=$boost_libdir"
else else
AC_MSG_RESULT([no]) AC_MSG_RESULT([no])
withval="static" withval="static"