mirror of
https://github.com/davatorium/rofi.git
synced 2025-03-24 17:16:46 -04:00
Merge pull request #25 from 1ace/patch-1
Hide error if `clang` is not installed
This commit is contained in:
commit
13d1036efb
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -44,7 +44,7 @@ CFLAGS+=-D__QC_MODE__
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
CLANG=$(shell which clang)
|
CLANG=$(shell which clang 2>/dev/null)
|
||||||
|
|
||||||
ifneq (${CLANG},${EMPTY})
|
ifneq (${CLANG},${EMPTY})
|
||||||
$(info Using clang compiler: ${CLANG})
|
$(info Using clang compiler: ${CLANG})
|
||||||
|
|
Loading…
Add table
Reference in a new issue