From b10a0914083911591a8ac816bd4bada6602bf8b5 Mon Sep 17 00:00:00 2001 From: vanhauser-thc Date: Tue, 23 May 2023 18:48:03 +0200 Subject: [PATCH] real gcc gnumakefile fix --- GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 6962d28a..715e7386 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -101,8 +101,8 @@ else endif COMPILER_TYPE=$(shell $(CC) --version|grep "Free Software Foundation") -ifneq ($(COMPILER_TYPE), "") - # $(info gcc is being used) +ifneq "$(COMPILER_TYPE)" "" + #$(info gcc is being used) CFLAGS_OPT += -Wno-error=format-truncation -Wno-format-truncation endif