* [PATCH] automake: revert -Werror by default
@ 2012-06-12 10:19 Jeff Layton
[not found] ` <1339496358-27940-1-git-send-email-jlayton-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Jeff Layton @ 2012-06-12 10:19 UTC (permalink / raw)
To: linux-cifs-u79uwXL29TY76Z2rM5mHXA; +Cc: sjayaraman-IBi9RG/b67k
I think in hindsight, that adding -Werror by default was a mistake.
cifs-utils is built in a wide range of environments and tools, and it's
very difficult to eliminate all of the possible warnings.
Let's go ahead and remove it and reduce the steady trickle of patches
that are simply to silence obscure warnings.
Cc: Suresh Jayaraman <sjayaraman-IBi9RG/b67k@public.gmane.org>
Signed-off-by: Jeff Layton <jlayton-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org>
---
Makefile.am | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 05729ca..b412262 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,4 +1,4 @@
-AM_CFLAGS = -Wall -Wextra -Werror -D_FORTIFY_SOURCE=2
+AM_CFLAGS = -Wall -Wextra -D_FORTIFY_SOURCE=2
ACLOCAL_AMFLAGS = -I aclocal
root_sbindir = $(ROOTSBINDIR)
--
1.7.7.6
^ permalink raw reply related [flat|nested] 3+ messages in thread[parent not found: <1339496358-27940-1-git-send-email-jlayton-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org>]
* Re: [PATCH] automake: revert -Werror by default [not found] ` <1339496358-27940-1-git-send-email-jlayton-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org> @ 2012-06-12 15:52 ` Suresh Jayaraman 2012-06-14 15:00 ` Jeff Layton 1 sibling, 0 replies; 3+ messages in thread From: Suresh Jayaraman @ 2012-06-12 15:52 UTC (permalink / raw) To: Jeff Layton; +Cc: linux-cifs-u79uwXL29TY76Z2rM5mHXA On 06/12/2012 03:49 PM, Jeff Layton wrote: > I think in hindsight, that adding -Werror by default was a mistake. > cifs-utils is built in a wide range of environments and tools, and it's > very difficult to eliminate all of the possible warnings. > > Let's go ahead and remove it and reduce the steady trickle of patches > that are simply to silence obscure warnings. > > Cc: Suresh Jayaraman <sjayaraman-IBi9RG/b67k@public.gmane.org> > Signed-off-by: Jeff Layton <jlayton-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org> > --- > Makefile.am | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/Makefile.am b/Makefile.am > index 05729ca..b412262 100644 > --- a/Makefile.am > +++ b/Makefile.am > @@ -1,4 +1,4 @@ > -AM_CFLAGS = -Wall -Wextra -Werror -D_FORTIFY_SOURCE=2 > +AM_CFLAGS = -Wall -Wextra -D_FORTIFY_SOURCE=2 > ACLOCAL_AMFLAGS = -I aclocal > + 1 Sounds like the right thing to do. Acked-by: Suresh Jayaraman <sjayaraman-IBi9RG/b67k@public.gmane.org> ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] automake: revert -Werror by default [not found] ` <1339496358-27940-1-git-send-email-jlayton-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org> 2012-06-12 15:52 ` Suresh Jayaraman @ 2012-06-14 15:00 ` Jeff Layton 1 sibling, 0 replies; 3+ messages in thread From: Jeff Layton @ 2012-06-14 15:00 UTC (permalink / raw) To: linux-cifs-u79uwXL29TY76Z2rM5mHXA; +Cc: sjayaraman-IBi9RG/b67k On Tue, 12 Jun 2012 06:19:18 -0400 Jeff Layton <jlayton-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org> wrote: > I think in hindsight, that adding -Werror by default was a mistake. > cifs-utils is built in a wide range of environments and tools, and it's > very difficult to eliminate all of the possible warnings. > > Let's go ahead and remove it and reduce the steady trickle of patches > that are simply to silence obscure warnings. > > Cc: Suresh Jayaraman <sjayaraman-IBi9RG/b67k@public.gmane.org> > Signed-off-by: Jeff Layton <jlayton-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org> > --- > Makefile.am | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/Makefile.am b/Makefile.am > index 05729ca..b412262 100644 > --- a/Makefile.am > +++ b/Makefile.am > @@ -1,4 +1,4 @@ > -AM_CFLAGS = -Wall -Wextra -Werror -D_FORTIFY_SOURCE=2 > +AM_CFLAGS = -Wall -Wextra -D_FORTIFY_SOURCE=2 > ACLOCAL_AMFLAGS = -I aclocal > > root_sbindir = $(ROOTSBINDIR) Merged... -- Jeff Layton <jlayton-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org> ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-06-14 15:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-12 10:19 [PATCH] automake: revert -Werror by default Jeff Layton
[not found] ` <1339496358-27940-1-git-send-email-jlayton-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org>
2012-06-12 15:52 ` Suresh Jayaraman
2012-06-14 15:00 ` Jeff Layton
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.