diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2013-11-29 10:37:49 +0000 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-11-29 12:19:00 +0100 |
commit | cf4ec89bfb0f9ae1ecf37fd070c1e167558ba0d0 (patch) | |
tree | 9ee7c535df7a7bcd72a336ad9c01358f7de32a5a | |
parent | 1842ad7f93897fa7dd0b0a3e6ae0759b120472bf (diff) | |
download | buildroot-cf4ec89bfb0f9ae1ecf37fd070c1e167558ba0d0.tar.gz buildroot-cf4ec89bfb0f9ae1ecf37fd070c1e167558ba0d0.zip |
tvheadend: remove -Werror from CFLAGS
Remove -Werror from CFLAGS to avoid build failures caused by warnings.
Fixes the following autobuild failure on MIPS64 n32/64:
http://autobuild.buildroot.net/results/6be/6be075726ac6db0a48dd6b535841ada932c9ffbb/
Reviewed-by: Markos Chandras <markos.chandras@imgtec.com>
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/tvheadend/tvheadend-003-remove-werror.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/package/tvheadend/tvheadend-003-remove-werror.patch b/package/tvheadend/tvheadend-003-remove-werror.patch new file mode 100644 index 0000000000..1b0e68797a --- /dev/null +++ b/package/tvheadend/tvheadend-003-remove-werror.patch @@ -0,0 +1,15 @@ +tvheadend: remove -Werror from CFLAGS + +Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> + +--- tvheadend-2b649954346aa2e9c81834d500a25c528f31f829/Makefile.orig 2013-11-28 15:52:52.284041848 +0000 ++++ tvheadend-2b649954346aa2e9c81834d500a25c528f31f829/Makefile 2013-11-28 15:53:03.715220194 +0000 +@@ -27,7 +27,7 @@ PROG := $(BUILDDIR)/tvheadend + # Common compiler flags + # + +-CFLAGS += -Wall -Werror -Wwrite-strings -Wno-deprecated-declarations ++CFLAGS += -Wall -Wwrite-strings -Wno-deprecated-declarations + CFLAGS += -Wmissing-prototypes -fms-extensions + CFLAGS += -g -funsigned-char -O2 + CFLAGS += -D_FILE_OFFSET_BITS=64 |