summaryrefslogtreecommitdiff
path: root/m4/ax_boost_base.m4
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-08-18 18:47:55 +0200
committerPeter Simons <simons@cryp.to>2010-08-18 18:47:55 +0200
commit5dc86bd343be75256a7a283f63c6d6083ac35477 (patch)
tree0149899a96ba6e4acc324691bb34449427c42650 /m4/ax_boost_base.m4
parent4a72b764fe3c1b6d3655fc31c319b4cbb35dcc94 (diff)
downloadautoconf-archive-5dc86bd343be75256a7a283f63c6d6083ac35477.tar.gz
AX_BOOST_BASE: prefer more portable `...` syntax over $(...) for running sub-shells
Diffstat (limited to 'm4/ax_boost_base.m4')
-rw-r--r--m4/ax_boost_base.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/ax_boost_base.m4 b/m4/ax_boost_base.m4
index fd53e71..8f935f6 100644
--- a/m4/ax_boost_base.m4
+++ b/m4/ax_boost_base.m4
@@ -33,7 +33,7 @@
# and this notice are preserved. This file is offered as-is, without any
# warranty.
-#serial 16
+#serial 17
AC_DEFUN([AX_BOOST_BASE],
[
@@ -90,7 +90,7 @@ if test "x$want_boost" = "xyes"; then
dnl The last entry in the list is chosen by default when no libraries
dnl are found, e.g. when only header-only libraries are installed!
libsubdirs="lib"
- if test "$(uname -m)" = "x86_64"; then
+ if test `uname -m` = x86_64; then
libsubdirs="lib64 lib lib64"
fi