diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-08-21 11:59:05 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-08-21 11:59:57 +0100 |
commit | 2d48c52da712f8fa3c4a579494c824491afb8515 (patch) | |
tree | dff658db3732673dea122d52ba5dc798c09d9f3b /m4 | |
parent | aef9d5e6fba3a934d6e0babc5f08409a9d5d3e99 (diff) |
need to accept ppc64le as a lib64 using platform in ax_boost_base.m4
Change-Id: I86ef068661082addbd165629d3d6905695090a6b
Diffstat (limited to 'm4')
-rw-r--r-- | m4/ax_boost_base.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/ax_boost_base.m4 b/m4/ax_boost_base.m4 index 7a0cf52d2e69..55de0c48baae 100644 --- a/m4/ax_boost_base.m4 +++ b/m4/ax_boost_base.m4 @@ -91,7 +91,7 @@ if test "x$want_boost" = "xyes"; then dnl are found, e.g. when only header-only libraries are installed! libsubdirs="lib" ax_arch=`uname -m` - if test $ax_arch = x86_64 -o $ax_arch = ppc64 -o $ax_arch = s390x -o $ax_arch = sparc64 -o $ax_arch = aarch64; then + if test $ax_arch = x86_64 -o $ax_arch = ppc64 -o $ax_arch = ppc64le -o $ax_arch = s390x -o $ax_arch = sparc64 -o $ax_arch = aarch64; then libsubdirs="lib64 lib lib64" fi |