From 5241d1221b7bccd7f63f872653e597f33948423a Mon Sep 17 00:00:00 2001 From: van Hauser Date: Mon, 14 Sep 2020 15:46:36 +0200 Subject: fix if no clang is present --- GNUmakefile.llvm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'GNUmakefile.llvm') 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 -- cgit 1.4.1