0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-01 17:48:56 +02: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])
if [[ $withval = "shared" ]]; then
AC_MSG_RESULT([yes])
BOOST_LDFLAGS += " -Wl,-rpath=$boost_libdir"
BOOST_LDFLAGS+=" -Wl,-rpath=$boost_libdir"
else
AC_MSG_RESULT([no])
withval="static"