From: Giulio Benetti Date: Thu, 27 Feb 2020 11:18:54 +0000 (+0100) Subject: package/git: make _BUG_ condition more clear X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=72217a9505277b7c64f1e64160dbb403e8f705d5;p=buildroot.git package/git: make _BUG_ condition more clear As pointed by Peter combined condition of the 2 gcc bugs is potentially wrong, but as Thomas pointed in this case it's not harmful. Let's fix it anyway since it's basically wrong even it doesn't cause harm. Signed-off-by: Giulio Benetti Signed-off-by: Peter Korsgaard --- diff --git a/package/git/git.mk b/package/git/git.mk index f32a2f8eb9..dd79c41e4a 100644 --- a/package/git/git.mk +++ b/package/git/git.mk @@ -67,7 +67,7 @@ endif GIT_CFLAGS = $(TARGET_CFLAGS) -ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_85180)$(BR2_TOOLCHAIN_HAS_GCC_BUG_93847),y) +ifneq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_85180)$(BR2_TOOLCHAIN_HAS_GCC_BUG_93847),) GIT_CFLAGS += -O0 endif