bash: fix build error with gcc 10

Fixes #4107
This commit is contained in:
Christian Prochaska 2021-04-23 14:44:33 +02:00 committed by Norman Feske
parent 8f23e377d9
commit bc8dbc6b1a

View File

@ -19,4 +19,7 @@ CFLAGS += -DNO_MAIN_ENV_ARG=1
# Prevent interactions with nonexisting tty driver
CFLAGS += -DNO_TTY_DRIVER
# Prevent link error with GCC 10, which defaults to -fno-common
CFLAGS += -fcommon
include $(call select_from_repositories,mk/noux.mk)