From 52e4ce9e204b647685df891d7804777c742d845f Mon Sep 17 00:00:00 2001 From: wchang kim Date: Tue, 4 Jul 2023 11:37:30 +0900 Subject: [PATCH] Fixed the build error using gcc 13 Change-Id: Icc003f9d6f957410d15ea582096be8434eb4c4a5 --- src/bin/Makefile.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bin/Makefile.mk b/src/bin/Makefile.mk index 361a796ad5..73520892d3 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 -- 2.34.1