about summary refs log tree commit diff
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-09-14 15:46:36 +0200
committervan Hauser <vh@thc.org>2020-09-14 15:46:36 +0200
commit5241d1221b7bccd7f63f872653e597f33948423a (patch)
tree797966f76d26d1132fe41ee3a9512cfacbfc0bb5
parenta95427a873c9687744b0da17aa4502353c53bcc7 (diff)
downloadafl++-5241d1221b7bccd7f63f872653e597f33948423a.tar.gz
fix if no clang is present
-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