1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-25 13:55:34 -05:00

Merge pull request #25 from 1ace/patch-1

Hide error if `clang` is not installed
This commit is contained in:
Dave Davenport 2014-02-17 20:49:00 +01:00
commit 13d1036efb

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