From a9c0f9a165680dce84b1a8cec971875de7c1b909 Mon Sep 17 00:00:00 2001 From: van Hauser <vh@thc.org> Date: Thu, 9 Apr 2020 09:08:04 +0200 Subject: [PATCH] fix indention --- GNUmakefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" -- GitLab