From eed22a4aaf7c4ba807e72fe1be3df6fe50e8c403 Mon Sep 17 00:00:00 2001 From: Mohamad Chaarawi Date: Mon, 6 Apr 2020 21:42:51 +0000 Subject: [PATCH] Look into lib64 for cart libraries too. Signed-off-by: Mohamad Chaarawi --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 5bdd78b..5a2f8f9 100755 --- a/configure.ac +++ b/configure.ac @@ -205,7 +205,7 @@ AC_ARG_WITH([cart], AS_IF([test "x$with_cart" != xno], [ CART="yes" - LDFLAGS="$LDFLAGS -L$with_cart/lib -Wl,--enable-new-dtags -Wl,-rpath=$with_cart/lib" + LDFLAGS="$LDFLAGS -L$with_cart/lib -L$with_cart/lib64 -Wl,--enable-new-dtags -Wl,-rpath=$with_cart/lib64" CPPFLAGS="$CPPFLAGS -I$with_cart/include/" AC_CHECK_HEADERS(gurt/common.h,, [unset CART]) AC_CHECK_LIB([gurt], [d_hash_murmur64],, [unset CART])