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:
parent
510e56c984
commit
02dd2b4aea
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -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})
|
||||
|
|
Loading…
Reference in a new issue