diff options
author | van Hauser <vh@thc.org> | 2020-09-14 15:46:36 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-09-14 15:46:36 +0200 |
commit | 5241d1221b7bccd7f63f872653e597f33948423a (patch) | |
tree | 797966f76d26d1132fe41ee3a9512cfacbfc0bb5 | |
parent | a95427a873c9687744b0da17aa4502353c53bcc7 (diff) | |
download | afl++-5241d1221b7bccd7f63f872653e597f33948423a.tar.gz |
fix if no clang is present
-rw-r--r-- | GNUmakefile.llvm | 4 |
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 |