diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2014-04-09 12:59:17 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2014-04-09 12:59:17 +0000 |
commit | c0e0b05aec621f154e811c0ff2ad4bded4ea7262 (patch) | |
tree | 75399e13aa708f12f5dbb7e1d051e25cd5b685a1 /src/m4/ax_boost_base.m4 | |
parent | 06d1fc6112bcb2fda0177d0125480383299fedf9 (diff) |
Bugfix: configure: Look in libx32 subdirectory for boost libraries
Diffstat (limited to 'src/m4/ax_boost_base.m4')
-rw-r--r-- | src/m4/ax_boost_base.m4 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/m4/ax_boost_base.m4 b/src/m4/ax_boost_base.m4 index 4f93a0e094..e025a7e1ca 100644 --- a/src/m4/ax_boost_base.m4 +++ b/src/m4/ax_boost_base.m4 @@ -92,7 +92,10 @@ if test "x$want_boost" = "xyes"; then libsubdirs="lib" ax_arch=`uname -m` case $ax_arch in - x86_64|ppc64|s390x|sparc64|aarch64) + x86_64) + libsubdirs="lib64 libx32 lib lib64" + ;; + ppc64|s390x|sparc64|aarch64) libsubdirs="lib64 lib lib64" ;; esac |