diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-04-01 18:56:59 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-04-09 10:23:37 +0200 |
commit | 8e417ecb5c980fa37e08fd352c881561110f0e95 (patch) | |
tree | c910cf771ac2adbb40ea467c53d9061447d4b056 | |
parent | a9d072ad02ecf0464c0070638814210b44c79589 (diff) | |
download | afl++-8e417ecb5c980fa37e08fd352c881561110f0e95.tar.gz |
makefile asan fix
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index b5d0fd97..29492bf0 100644 --- a/Makefile +++ b/Makefile @@ -156,8 +156,8 @@ ASAN_LDFLAGS+=-fsanitize=address -fstack-protector-all ifdef ASAN_BUILD $(info Compiling ASAN version of binaries) - CFLAGS+="$ASAN_CFLAGS" - LDFLAGS+="$ASAN_LDFLAGS" + CFLAGS+=$(ASAN_CFLAGS) + LDFLAGS+=$(ASAN_LDFLAGS) endif ifdef PROFILING |