about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--GNUmakefile.llvm4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile.llvm b/GNUmakefile.llvm
index 93ab34fd..39ddba3c 100644
--- a/GNUmakefile.llvm
+++ b/GNUmakefile.llvm
@@ -175,10 +175,10 @@ endif
 # Now it can happen that CC points to clang - but there is no clang on the
 # system. Then we fall back to cc
 #
-ifeq "$(shell type $(CC)" ""
+ifeq "$(shell type $(CC))" ""
   CC = cc
 endif
-ifeq "$(shell type $(CXX)" ""
+ifeq "$(shell type $(CXX))" ""
   CXX = c++
 endif