summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2016-10-10 21:23:31 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2016-10-10 21:23:31 +0200
commit32faa7ecfe887457fe5ce554f674f3c49c548523 (patch)
treed8ab88f4135cae1905682f12a6838833ce8b4275
parent7bb5f8a836b916d6ebf7b6921b136e99cea2442d (diff)
Disable -Werror by default, we still have warnings to fix
-rw-r--r--.topdeps2
-rw-r--r--.topmsg18
-rw-r--r--configure.ac6
3 files changed, 7 insertions, 19 deletions
diff --git a/.topdeps b/.topdeps
index df7c3c6e56..180b47c18b 100644
--- a/.topdeps
+++ b/.topdeps
@@ -1 +1 @@
-9a869d822025be8e43b78234997b10bf0cf9d859
+baseline
diff --git a/.topmsg b/.topmsg
index dd6634c886..c22d0c0d8d 100644
--- a/.topmsg
+++ b/.topmsg
@@ -1,16 +1,4 @@
-Subject: Baseline for our topic branches.
+From: Samuel Thibault <samuel.thibault@ens-lyon.org>
+Subject: [PATCH] t/no-werror
----
-
-This need not strictly be a TopGit branch, but it is for easy synchronization
-between different machines.
-
-As the baseline is merged into the topic branches, it is forward-only.
-
-To advance it:
-
- $ echo [SHA1] > .topdeps
- $ git commit -m Advance. -- .topdeps
- $ tg update
-
----
+Disable -Werror by default, we still have warnings to fix
diff --git a/configure.ac b/configure.ac
index 3c766b7409..9b63f7038a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -286,10 +286,10 @@ AC_ARG_ENABLE([all-warnings],
AC_SUBST(all_warnings)
AC_ARG_ENABLE([werror],
- AC_HELP_STRING([--disable-werror],
- [do not build with -Werror]),
+ AC_HELP_STRING([--enable-werror],
+ [build with -Werror]),
[enable_werror=$enableval],
- [enable_werror=yes])
+ [enable_werror=no])
AC_SUBST(enable_werror)
AC_ARG_ENABLE([multi-arch],