1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

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

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})