From 0de7b7489678eabac17309dad0f488711696658b Mon Sep 17 00:00:00 2001
From: Paul Smith <psmith@gnu.org>
Date: Sun, 27 Feb 2022 15:14:12 -0500
Subject: [PATCH] * README.git: Fix compiler options for ASAN

---
 README.git | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.git b/README.git
index fbd57d3a..a1592ada 100644
--- a/README.git
+++ b/README.git
@@ -186,7 +186,7 @@ work on non-GNU systems (Windows, MacOS, etc.)
   You can build with ASAN and run tests, like this:
 
     make clean
-    make -j8 CFLAGS='-ggdb3 -fsanitizer=address' LDFLAGS='-ggdb3 -fsanitizer=address'
+    make -j8 CFLAGS='-ggdb3 -fsanitize=address' LDFLAGS='-ggdb3 -fsanitize=address'
     (cd tests && ./run_make_tests -make ../make)
 
   Note that ASAN is reporting many more errors than valgrind.  I don't know