mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-29 06:10:09 +08:00
Use grep -q
instead of grep --quiet
to be more portable
This commit is contained in:
parent
39d586d7fc
commit
24d35faed2
2
Makefile
2
Makefile
@ -224,7 +224,7 @@ endif
|
||||
|
||||
TCC_GIT_HASH=$(shell git rev-parse > /dev/null 2>&1 && git rev-parse --short HEAD || echo no)
|
||||
ifneq ($(TCC_GIT_HASH),no)
|
||||
MODIFIED = $(shell git diff | grep --quiet +++ && echo "modified ")
|
||||
MODIFIED = $(shell git diff | grep -q +++ && echo "modified ")
|
||||
$(X)tcc.o : DEFINES += -DTCC_GIT_HASH="\"$(MODIFIED)$(TCC_GIT_HASH)\""
|
||||
endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user