gypsy is breaking jhbuild



gypsy is breaking the build of GNOME due to unconditional use of
-Werror. As far as I can tell there's no simple way to disable the
-Werror behavior of this configure line in gypsy:

http://cgit.freedesktop.org/gypsy/tree/configure.ac#n61

Attached is a patch which removes the unconditional -Werror. Similarly
acceptable would be a commit that allows selectively enabling -Werror
for developers actually hacking on gypsy.

Thanks,

Stef
>From 3f06f8bd5fb08891ee213ae683a684162d2fc96e Mon Sep 17 00:00:00 2001
From: Stef Walter <stefw gnome org>
Date: Tue, 30 Oct 2012 11:46:38 +0100
Subject: [PATCH] Remove unconditional -Werror

---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 24a346f..3faa91e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -58,7 +58,7 @@ AC_MSG_RESULT([$with_user])
 AS_AC_EXPAND(LIBEXECDIR, $libexecdir)
 AS_AC_EXPAND(DAEMON_USER, $with_user)
 
-CFLAGS="$CFLAGS -g -Wall -Werror -Wno-format"
+CFLAGS="$CFLAGS -g -Wall -Wno-format"
 
 GTK_DOC_CHECK([1.6])
 # TODO: add --with-xsltproc argument to override PATH
-- 
1.7.12.1



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]