From ca6e2fa6830ec746788b78fc30bc054194fb85d6 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 7 Jun 2015 20:50:10 -0400 Subject: [PATCH] Fixed Clang compiler identification string --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index b1ab5370..0b0b9802 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -15,7 +15,7 @@ ISX86 = $(shell uname -m | $(EGREP) -c "i.86|x86|i86|amd64") IS_SUN_CC = $(shell $(CXX) -V 2>&1 | $(EGREP) -c "CC: Sun") IS_LINUX = $(shell $(CXX) -dumpmachine 2>&1 | $(EGREP) -c "linux") IS_MINGW = $(shell $(CXX) -dumpmachine 2>&1 | $(EGREP) -c "mingw") -CLANG_COMPILER = $(shell $(CXX) --version 2>&1 | $(EGREP) -i -c "clang version") +CLANG_COMPILER = $(shell $(CXX) --version 2>&1 | $(EGREP) -i -c "clang") # Default prefix for make install ifeq ($(PREFIX),)