From 5b5937db45989ca6ace93e5978fe67e8b925f32d Mon Sep 17 00:00:00 2001 From: neildhar Date: Tue, 26 May 2020 10:33:12 -0700 Subject: [PATCH] [hermes] Fix coverage build (#3877) --- projects/hermes/build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/hermes/build.sh b/projects/hermes/build.sh index 015cf99c8..abc09096f 100755 --- a/projects/hermes/build.sh +++ b/projects/hermes/build.sh @@ -21,6 +21,8 @@ then elif [ "${SANITIZER}" = undefined ] then CONFIGURE_FLAGS="--enable-ubsan" +else + CONFIGURE_FLAGS="" fi ./utils/build/configure.py "${OUT}/build" --build-system "Ninja" ${CONFIGURE_FLAGS} \