From e5eb4fb12c4c573148b166681f64c3e10b10a534 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Skaflestad?= Date: Tue, 10 Jul 2012 14:50:07 +0200 Subject: [PATCH] Fix another fall-out from Boost library clean-up We failed to propagate the BOOST_\(.*\)FLAGS -> OPM_BOOST_\1FLAGS fix (commit 6b57a00) to all clients, notably our own macro for recognising whether or not the Boost.Test library should be linked dynamically or statically. This commit remedies that oversight. --- m4/opm_dynlink_boost_test.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/m4/opm_dynlink_boost_test.m4 b/m4/opm_dynlink_boost_test.m4 index 7c5982b1..7005b552 100644 --- a/m4/opm_dynlink_boost_test.m4 +++ b/m4/opm_dynlink_boost_test.m4 @@ -44,8 +44,8 @@ AC_REQUIRE([AX_BOOST_UNIT_TEST_FRAMEWORK]) _opm_LIBS_SAVE="${LIBS}" _opm_CPPFLAGS_SAVE="${CPPFLAGS}" -LIBS="${BOOST_LDFLAGS} ${BOOST_UNIT_TEST_FRAMEWORK_LIB} ${LIBS}" -CPPFLAGS="${BOOST_CPPFLAGS} ${CPPFLAGS}" +LIBS="${OPM_BOOST_LDFLAGS} ${BOOST_UNIT_TEST_FRAMEWORK_LIB} ${LIBS}" +CPPFLAGS="${OPM_BOOST_CPPFLAGS} ${CPPFLAGS}" AC_LANG_PUSH([C++])