Skip to content

Commit e8ddd35

Browse files
Fix configure arg shell quoting for SANITIZE (#999)
1 parent 958b871 commit e8ddd35

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.evergreen/compile-unix.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,8 @@ esac
200200
if [ "darwin" = "$OS" -a "arm64" = "$MARCH" ]; then
201201
CONFIGURE_FLAGS="$CONFIGURE_FLAGS -DCMAKE_OSX_ARCHITECTURES=arm64"
202202
fi
203-
CONFIGURE_FLAGS="$CONFIGURE_FLAGS \"-DMONGO_SANITIZE=${SANITIZE}\""
203+
204+
CONFIGURE_FLAGS="$CONFIGURE_FLAGS -DMONGO_SANITIZE=$SANITIZE"
204205

205206
if ! python3 build/mongodl.py --test -C csfle -V 5.3.1 -o . > /dev/null; then
206207
echo "No csfle detected for this platform. Disabling MONGOC_TEST_USE_CSFLE."

0 commit comments

Comments
 (0)