make safe_flag check compatible with POSIX sh

This commit is contained in:
Daniel Micay 2018-10-23 15:55:45 -04:00
parent 59def67979
commit 9d1567ce16

View File

@ -3,7 +3,7 @@ CONFIG_UBSAN := false
CONFIG_SEAL_METADATA := false
define safe_flag
$(shell $(CC) -E $1 - </dev/null &>/dev/null && echo $1)
$(shell $(CC) -E $1 - </dev/null >/dev/null 2>&1 && echo $1)
endef
CPPFLAGS := -D_GNU_SOURCE