| From 74edf24d9780900f3ce15d2403c6e331b031d454 Mon Sep 17 00:00:00 2001 |
| From: Jeff Layton <jlayton@samba.org> |
| Date: Thu, 14 Jun 2012 10:59:18 -0400 |
| Subject: [PATCH] automake: revert -Werror by default |
| |
| 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@suse.com> |
| Signed-off-by: Jeff Layton <jlayton@samba.org> |
| |
| Makefile.am | 2 +- |
| 1 files changed, 1 insertions(+), 1 deletions(-) |
| |
| diff --git a/Makefile.am b/Makefile.am |
| index 05729ca..b412262 100644 |
| |
| |
| @@ -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 |
| |