Bugfix: configure: Look in libx32 subdirectory for boost libraries
This commit is contained in:
parent
06d1fc6112
commit
c0e0b05aec
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue