hide error if clang is not installed

hiding the ugly `which: no clangi in (/usr/local/bin:/usr/bin:…)`
This commit is contained in:
Eric Engeström 2014-02-17 20:16:54 +01:00
parent 510e56c984
commit 02dd2b4aea
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ CFLAGS+=-D__QC_MODE__
endif
CLANG=$(shell which clang)
CLANG=$(shell which clang 2>/dev/null)
ifneq (${CLANG},${EMPTY})
$(info Using clang compiler: ${CLANG})