diff options
author | Robert Clausecker <fuz@fuz.su> | 2022-07-30 03:44:27 +0000 |
---|---|---|
committer | Neel Chauhan <nc@FreeBSD.org> | 2022-08-09 20:50:35 +0000 |
commit | 5fc1113283a5b303374a932b84ee7bce23c077c4 (patch) | |
tree | 34695af37383141c421a6fabf1597e442b004da5 | |
parent | 9f1ee08495f9a0075abffa7640685675f7830f9a (diff) |
devel/gindent: fix build
Remove -Werror as per policy.
PR: 265510
Approved by: Robert Clausecker <moritz AT schmi DOT tt> (maintainer)
MFH: 2022Q3 (build fix blanket)
(cherry picked from commit 5d38de488ba0413c33ba55cf368c6dc4575c8cf3)
-rw-r--r-- | devel/gindent/files/patch-src_Makefile.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/gindent/files/patch-src_Makefile.in b/devel/gindent/files/patch-src_Makefile.in new file mode 100644 index 000000000000..c424b1fc4d6c --- /dev/null +++ b/devel/gindent/files/patch-src_Makefile.in @@ -0,0 +1,11 @@ +--- src/Makefile.in.orig 2022-07-30 03:38:42 UTC ++++ src/Makefile.in +@@ -352,7 +352,7 @@ EXTRA_DIST = @PACKAGE@.gperf @PACKAGE@-cc.gperf wildex + BUILT_SOURCES = gperf.c gperf-cc.c + AM_CPPFLAGS = -I. -I$(srcdir) -I$(top_srcdir)/intl + MAINTAINERCLEANFILES = Makefile.in libgettext.h +-AM_CFLAGS = -Wall -W -Werror -Wredundant-decls -Wshadow \ ++AM_CFLAGS = -Wall -W -Wredundant-decls -Wshadow \ + -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs \ + -Wmissing-declarations -Wcomment -Wbad-function-cast \ + -Wcast-align $(am__append_1) |