diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-07-07 12:51:02 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-07-07 12:51:02 +0200 |
commit | 9e2cc8f1a7684f388758ddc34fd352b480b24039 (patch) | |
tree | 573a1345e3dbe3e46ad7c8c4bf8a9dfc41df9c52 | |
parent | e29ccbb75ac1be29c79135c9e2740d709e0c37cc (diff) | |
download | ayatana-ido-9e2cc8f1a7684f388758ddc34fd352b480b24039.tar.gz ayatana-ido-9e2cc8f1a7684f388758ddc34fd352b480b24039.tar.bz2 ayatana-ido-9e2cc8f1a7684f388758ddc34fd352b480b24039.zip |
src/Makefile.am: Don't choke with FTBFS on every future deprecation warning. Drop -Werror from CPPFLAGS.
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 943c3c9..864ab90 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -67,7 +67,7 @@ AM_CPPFLAGS = \ $(GCC_FLAGS) \ $(GTK_CFLAGS) \ $(MAINTAINER_CFLAGS) \ - -Wall -Werror -Wextra -Wno-unused-parameter -Wno-error=deprecated-declarations + -Wall -Wextra -Wno-unused-parameter -Wno-error=deprecated-declarations AM_CFLAGS = \ $(COVERAGE_CFLAGS) |