From 4da2e32f7f7b84c8fdc01855e668bfca600d7105 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Fri, 26 Mar 2021 09:32:50 +0100 Subject: [PATCH] configure: Fix --with-msan option Also (probably) reported by Andrew Savchenko. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 84f6a0db..e7e68be0 100644 --- a/configure.in +++ b/configure.in @@ -168,7 +168,7 @@ if test "x$with_asan" = "xyes"; then LDFLAGS="$LDFLAGS -fsanitize=address" fi -AC_ARG_WITH(asan, [ --with-msan Enable MemorySanitizer. Requires compiler support.]) +AC_ARG_WITH(msan, [ --with-msan Enable MemorySanitizer. Requires compiler support.]) if test "x$with_msan" = "xyes"; then CFLAGS="$CFLAGS -fsanitize=memory" LDFLAGS="$LDFLAGS -fsanitize=memory" -- 2.39.2