From: Daniel Dickinson Date: Tue, 13 Jul 2010 13:56:38 +0000 (+0000) Subject: net/freeswitch: Fixed a build error on avr32 due to pedantic format type checking... X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=d1c7dfd20ab4d0fd16f411302275ba773fcf08bb;p=openwrt%2Fsvn-archive%2Fpackages.git net/freeswitch: Fixed a build error on avr32 due to pedantic format type checking for printf. SVN-Revision: 22167 --- diff --git a/net/freeswitch/Makefile b/net/freeswitch/Makefile index 6a65f9c25..b39de75af 100644 --- a/net/freeswitch/Makefile +++ b/net/freeswitch/Makefile @@ -318,8 +318,8 @@ ifneq ($(CONFIG_PACKAGE_freeswitch-sounds-moh),) MAKE_INSTALL_TARGETS+= moh-install endif -FS_TARGET_CFLAGS = ${TARGET_CFLAGS} -DLUA_USE_LINUX $(FPIC) -std=gnu99 -FS_TARGET_CXXFLAGS = ${TARGET_CXXFLAGS} -DLUA_USE_LINUX $(FPIC) +FS_TARGET_CFLAGS = ${TARGET_CFLAGS} -DLUA_USE_LINUX $(FPIC) -std=gnu99 -Wno-format +FS_TARGET_CXXFLAGS = ${TARGET_CXXFLAGS} -DLUA_USE_LINUX $(FPIC) -Wno-format FS_TARGET_CPPFLAGS = -I. -I./lua ${TARGET_CPPFLAGS} ifneq ($(CONFIG_USE_EGLIBC),)