From: wchang kim Date: Tue, 4 Jul 2023 02:37:30 +0000 (+0900) Subject: Fixed the build error using gcc 13 X-Git-Tag: accepted/tizen/unified/20230706.152207^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=52e4ce9e204b647685df891d7804777c742d845f;p=platform%2Fupstream%2Fenlightenment.git Fixed the build error using gcc 13 Change-Id: Icc003f9d6f957410d15ea582096be8434eb4c4a5 --- diff --git a/src/bin/Makefile.mk b/src/bin/Makefile.mk index 361a796..7352089 100644 --- a/src/bin/Makefile.mk +++ b/src/bin/Makefile.mk @@ -289,6 +289,8 @@ src_bin_enlightenment_CPPFLAGS += @SYSTEMD_CFLAGS@ endif src_bin_enlightenment_CPPFLAGS += @LIBINPUT_CFLAGS@ +src_bin_enlightenment_CPPFLAGS += -Wno-format-truncation + src_bin_enlightenment_SOURCES = \ src/bin/e_main.c \ $(enlightenment_src) @@ -317,6 +319,7 @@ src_bin_enlightenment_info_LDADD = @E_INFO_LIBS@ src_bin_enlightenment_info_CPPFLAGS = $(E_CPPFLAGS) @E_INFO_CFLAGS@ src_bin_enlightenment_info_LDFLAGS = -pie src_bin_enlightenment_info_CPPFLAGS += -fPIE +src_bin_enlightenment_info_CPPFLAGS += -Wno-format-truncation # HACK! why install-data-hook? install-exec-hook is run after bin_PROGRAMS # and before internal_bin_PROGRAMS are installed. install-data-hook is