From a006a39501d26be934d16d074a1158af8113c786 Mon Sep 17 00:00:00 2001 From: DavidKorczynski Date: Mon, 18 Oct 2021 23:19:57 +0100 Subject: [PATCH] brunsli: fix build (#6613) --- projects/brunsli/build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/brunsli/build.sh b/projects/brunsli/build.sh index 048bbd091..3bcda3d19 100755 --- a/projects/brunsli/build.sh +++ b/projects/brunsli/build.sh @@ -24,11 +24,11 @@ make -j$(nproc) brunslidec-static $CXX $CXXFLAGS -std=c++11 -I./c/include c/tests/fuzz_decode.cc \ -o $OUT/fuzz_decode $LIB_FUZZING_ENGINE \ ./artifacts/libbrunslidec-static.a ./artifacts/libbrunslicommon-static.a \ - ./third_party/brotli/libbrotlidec-static.a \ - ./third_party/brotli/libbrotlicommon-static.a + ./_deps/brotli-build/libbrotlidec-static.a \ + ./_deps/brotli-build/libbrotlicommon-static.a $CXX $CXXFLAGS -std=c++11 -I./c/include c/tests/fuzz_decode_streaming.cc \ -o $OUT/fuzz_decode_streaming $LIB_FUZZING_ENGINE \ ./artifacts/libbrunslidec-static.a ./artifacts/libbrunslicommon-static.a \ - ./third_party/brotli/libbrotlidec-static.a \ - ./third_party/brotli/libbrotlicommon-static.a + ./_deps/brotli-build/libbrotlidec-static.a \ + ./_deps/brotli-build/libbrotlicommon-static.a