aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/brunsli
diff options
context:
space:
mode:
authorGravatar DavidKorczynski <david@adalogics.com>2021-10-18 23:19:57 +0100
committerGravatar GitHub <noreply@github.com>2021-10-18 23:19:57 +0100
commita006a39501d26be934d16d074a1158af8113c786 (patch)
tree8f7c01fecd77192531556b1ae55a49e94ff63735 /projects/brunsli
parente9a57b9c1fae9e98064455c0ae49bf32fcb1bc72 (diff)
brunsli: fix build (#6613)
Diffstat (limited to 'projects/brunsli')
-rwxr-xr-xprojects/brunsli/build.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/projects/brunsli/build.sh b/projects/brunsli/build.sh
index 048bbd09..3bcda3d1 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