diff options
author | van Hauser <vh@thc.org> | 2020-04-09 09:08:04 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-04-09 09:08:04 +0200 |
commit | 3c546341e38ccac7e53f6d2e5840140eb4a11827 (patch) | |
tree | 97f3f18ac626af2daa4d00adecd1459f6f3f04e0 | |
parent | 650bd1c17956d4f426a8cc65792e9c2f38d8a7dc (diff) | |
download | afl++-3c546341e38ccac7e53f6d2e5840140eb4a11827.tar.gz |
fix indention
-rw-r--r-- | GNUmakefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index a2a4bcaf..ecc475b3 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -54,7 +54,8 @@ ifneq "$(shell uname)" "Darwin" ifeq "$(shell echo 'int main() {return 0; }' | $(CC) $(CFLAGS) -Werror -x c - -march=native -o .test 2>/dev/null && echo 1 || echo 0 ; rm -f .test )" "1" CFLAGS_OPT = -march=native endif - CFLAGS_OPT += -D_FORTIFY_SOURCE=2 + # OS X does not like _FORTIFY_SOURCE=2 + CFLAGS_OPT += -D_FORTIFY_SOURCE=2 endif ifneq "$(shell uname -m)" "x86_64" |