summaryrefslogtreecommitdiff
path: root/m4/ax_boost_unit_test_framework.m4
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2010-09-24 10:58:57 +0200
committerPeter Simons <simons@cryp.to>2010-09-24 20:33:03 +0200
commit624f8c562edaf56a99e058c9ecd23d1b28d35d18 (patch)
treead810342541b42cd6912aa8b09c8793d59d4f7f9 /m4/ax_boost_unit_test_framework.m4
parent40fc6f60ec0e0c8ea6b78291a9bcf684d03ccca0 (diff)
downloadautoconf-archive-624f8c562edaf56a99e058c9ecd23d1b28d35d18.tar.gz
replace SP*-TAB by TAB, now that we know there are fewer than 8 SP
git grep -l ' '|xargs perl -pi -e 's/ +\t/\t/'
Diffstat (limited to 'm4/ax_boost_unit_test_framework.m4')
-rw-r--r--m4/ax_boost_unit_test_framework.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/ax_boost_unit_test_framework.m4 b/m4/ax_boost_unit_test_framework.m4
index 4ddf244..4ca40cd 100644
--- a/m4/ax_boost_unit_test_framework.m4
+++ b/m4/ax_boost_unit_test_framework.m4
@@ -75,7 +75,7 @@ AC_DEFUN([AX_BOOST_UNIT_TEST_FRAMEWORK],
BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/@<:@^\/@:>@*//'`
if test "x$ax_boost_user_unit_test_framework_lib" = "x"; then
- saved_ldflags="${LDFLAGS}"
+ saved_ldflags="${LDFLAGS}"
for monitor_library in `ls $BOOSTLIBDIR/libboost_unit_test_framework*.so* $BOOSTLIBDIR/libboost_unit_test_framework*.a* 2>/dev/null` ; do
if test -r $monitor_library ; then
libextension=`echo $monitor_library | sed 's,.*/,,' | sed -e 's;^lib\(boost_unit_test_framework.*\)\.so.*$;\1;' -e 's;^lib\(boost_unit_test_framework.*\)\.a*$;\1;'`
@@ -97,11 +97,11 @@ AC_DEFUN([AX_BOOST_UNIT_TEST_FRAMEWORK],
AC_CHECK_LIB($ax_lib, exit,
[BOOST_UNIT_TEST_FRAMEWORK_LIB="-l$ax_lib"; AC_SUBST(BOOST_UNIT_TEST_FRAMEWORK_LIB) link_unit_test_framework="yes"; break],
[link_unit_test_framework="no"])
- done
+ done
fi
else
link_unit_test_framework="no"
- saved_ldflags="${LDFLAGS}"
+ saved_ldflags="${LDFLAGS}"
for ax_lib in boost_unit_test_framework-$ax_boost_user_unit_test_framework_lib $ax_boost_user_unit_test_framework_lib ; do
if test "x$link_unit_test_framework" = "xyes"; then
break;
@@ -132,6 +132,6 @@ AC_DEFUN([AX_BOOST_UNIT_TEST_FRAMEWORK],
fi
CPPFLAGS="$CPPFLAGS_SAVED"
- LDFLAGS="$LDFLAGS_SAVED"
+ LDFLAGS="$LDFLAGS_SAVED"
fi
])