From a16d8d0cad05eec65a7464af558ab375a0bc07df Mon Sep 17 00:00:00 2001 From: Adam Harrison Date: Sat, 19 Oct 2024 17:26:11 -0400 Subject: Removed encoders for lzma. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index a2ef537..6593436 100755 --- a/build.sh +++ b/build.sh @@ -24,7 +24,7 @@ if [[ "$@" != *"-lz"* ]]; then LINK_FLAGS="$LINK_FLAGS -lz" fi if [[ "$@" != *"-llzma"* ]]; then - [ ! -e "lib/xz/build" ] && { cd lib/xz && mkdir build && cd build && CFLAGS="$COMPILE_FLAGS -Wno-incompatible-pointer-types" cmake .. -G "Unix Makefiles" $CMAKE_DEFAULT_FLAGS&& $MAKE -j $JOBS && $MAKE install && cd ../../../ || exit -1; } + [ ! -e "lib/xz/build" ] && { cd lib/xz && mkdir build && cd build && CFLAGS="$COMPILE_FLAGS -Wno-incompatible-pointer-types" cmake .. -G "Unix Makefiles" $CMAKE_DEFAULT_FLAGS -DHAVE_ENCODERS=false && $MAKE -j $JOBS && $MAKE install && cd ../../../ || exit -1; } LINK_FLAGS="$LINK_FLAGS -llzma" fi if [[ "$@" != *"-lmbedtls"* && "$@" != *"-lmbedcrypto"* && "$@" != *"-lmbedx509"* ]]; then -- cgit v1.2.3