From f5302b3b465d4920a8c735c67910160ff18cdd6c Mon Sep 17 00:00:00 2001 From: "Jason S. Ninneman" Date: Mon, 29 May 2017 10:57:47 -0700 Subject: [PATCH] Don't build with two -std options. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4faf82e..a34c7a6 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ GCCVERSIONGTEQ4 := $(shell expr `gcc -dumpversion | cut -f1 -d.` \>= 4) ifeq ($(UNAME_S),Darwin) LIBS= else ifeq "$(GCCVERSIONGTEQ4)" "1" - CC=c99 --std=gnu99 + CC=c99 endif OBJS=main.o init.o actions1.o actions2.o score.o misc.o -- 2.31.1