[PATCH] erofs-utils: fix --with-lz4-libdir when lz4_force_static is off
Gao Xiang
xiang at kernel.org
Tue Aug 17 23:02:05 AEST 2021
--with-lz4-libdir doesn't work for lz4 1.9.x, hopefully it works for
all cases now.
Fixes: c497d89e5eac ("erofs-utils: enhance static linking for lz4 1.8.x")
Signed-off-by: Gao Xiang <xiang at kernel.org>
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 38c371c4910f..35106094d9f9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -285,7 +285,7 @@ if test "x${have_lz4}" = "xyes"; then
LZ4_LIBS="-Wl,-Bstatic -Wl,-whole-archive -Xlinker ${LZ4_LIBS} -Wl,-no-whole-archive -Wl,-Bdynamic"
test -z "${with_lz4_libdir}" || LZ4_LIBS="-L${with_lz4_libdir} $LZ4_LIBS"
else
- test -z "${with_lz4_libdir}" || LZ4_LIBS="-R${with_lz4_libdir} $LZ4_LIBS"
+ test -z "${with_lz4_libdir}" || LZ4_LIBS="-L${with_lz4_libdir} -R${with_lz4_libdir} $LZ4_LIBS"
fi
liblz4_LIBS="${LZ4_LIBS}"
fi
--
2.20.1
More information about the Linux-erofs
mailing list