From 93b27dd1b09350a67e98a7929e85f69ee21ed8a6 Mon Sep 17 00:00:00 2001 From: DavidKorczynski Date: Sat, 7 Feb 2026 20:47:22 +0000 Subject: [PATCH] jsonnet: fix build Removed unnecessary library links from the build script. --- projects/jsonnet/build.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/projects/jsonnet/build.sh b/projects/jsonnet/build.sh index f4d188b8c53a..1f9bc5a91fff 100644 --- a/projects/jsonnet/build.sh +++ b/projects/jsonnet/build.sh @@ -40,7 +40,5 @@ for fuzzer in convert_jsonnet_fuzzer_regular \ convert_jsonnet_fuzzer_multi; do $CXX $CXXFLAGS -I${INSTALL_DIR}/include $LIB_FUZZING_ENGINE \ $fuzzer.cc -o $OUT/$fuzzer \ - ${INSTALL_DIR}/build/libjsonnet.a \ - ${INSTALL_DIR}/build/libmd5.a \ - ${INSTALL_DIR}/build/libryml.a + ${INSTALL_DIR}/build/libjsonnet.a done