Magellan Linux

Contents of /trunk/busybox/patches/busybox-1.13.2-flags.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 748 - (show annotations) (download)
Mon Jan 12 19:30:11 2009 UTC (15 years, 3 months ago) by niro
File size: 978 byte(s)
re-diff

1 diff -Naur busybox-1.13.2/Makefile.flags busybox-1.13.2-magellan/Makefile.flags
2 --- busybox-1.13.2/Makefile.flags 2008-11-09 18:28:22.000000000 +0100
3 +++ busybox-1.13.2-magellan/Makefile.flags 2009-01-12 20:41:14.000000000 +0100
4 @@ -30,7 +30,7 @@
5 # still possible to build bbox without warnings.
6
7 ifeq ($(CONFIG_WERROR),y)
8 -CFLAGS += $(call cc-option,-Werror,)
9 +CFLAGS += $(call cc-option,,)
10 endif
11 # gcc 3.x emits bogus "old style proto" warning on find.c:alloc_action()
12 CFLAGS += $(call cc-ifversion, -ge, 0400, -Wold-style-definition)
13 @@ -40,7 +40,7 @@
14 # of branch probabilities (hopefully makes bloatcheck more stable):
15 CFLAGS += $(call cc-option,-fno-guess-branch-probability,)
16 CFLAGS += $(call cc-option,-funsigned-char -static-libgcc,)
17 -CFLAGS += $(call cc-option,-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1,)
18 +CFLAGS += $(call cc-option,,)
19
20 # FIXME: These warnings are at least partially to be concerned about and should
21 # be fixed..