From 820c041c2f8084e4b5b48bb355c4c2550d364937 Mon Sep 17 00:00:00 2001 From: Justin W Smith <103147162+justsmth@users.noreply.github.com> Date: Wed, 10 Jan 2024 15:09:59 -0500 Subject: [PATCH] Fix BOTAN_INCLUDE_PATH --- .../ci/docker_images/dependencies/build_cryptofuzz_modules.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ci/docker_images/dependencies/build_cryptofuzz_modules.sh b/tests/ci/docker_images/dependencies/build_cryptofuzz_modules.sh index 1f85cb5d20e..db0f7d44cf1 100755 --- a/tests/ci/docker_images/dependencies/build_cryptofuzz_modules.sh +++ b/tests/ci/docker_images/dependencies/build_cryptofuzz_modules.sh @@ -29,9 +29,9 @@ cd botan git rev-parse HEAD python3 configure.py --cc-bin=$CXX --cc-abi-flags="$CXXFLAGS" --disable-shared --disable-modules=locking_allocator,x509,tls --build-targets=static --without-documentation make -j$(nproc) -export CXXFLAGS="$CXXFLAGS -DCRYPTOFUZZ_BOTAN" env LIBBOTAN_A_PATH `realpath libbotan-3.a` -env BOTAN_INCLUDE_PATH `realpath build/include` +env BOTAN_INCLUDE_PATH `realpath build/include/public` +export CXXFLAGS="$CXXFLAGS -DCRYPTOFUZZ_BOTAN -I $(realpath build/include/internal)" cd "${CRYPTOFUZZ_SRC}/modules/botan/" make -j$(nproc)