From c187933e4e7288cb2bc50204695b733d04620a4e Mon Sep 17 00:00:00 2001 From: Hubert Maier Date: Wed, 23 Nov 2022 12:09:46 +0100 Subject: [PATCH] CONFIGURE: (AMIGAOS) Fix gcc silencing Obviously there is no such thing as "append_var" in scummvm-tools configure --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 65fabc76..31ad6db9 100755 --- a/configure +++ b/configure @@ -1188,7 +1188,7 @@ case $_host_os in # already typedefs (u)int32 as (unsigned) long and suppress # those noisy format warnings caused by the 'long' 4 byte type_4_byte='long' - append_var CXXFLAGS "-Wno-format" + CXXFLAGS="$CXXFLAGS -Wno-format" ;; beos*) DEFINES="$DEFINES -DSYSTEM_NOT_SUPPORTING_D_TYPE"