diff options
author | John Marino <marino@FreeBSD.org> | 2014-10-27 12:23:15 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-10-27 12:23:15 +0000 |
commit | f85f4ec41bbc042cb26a77aceb8e83880ee836c4 (patch) | |
tree | 40575d47478e33ab47bbe9e0d41d925c01016873 /irc | |
parent | 1733805e72ad71e7566ef026aadbd24ebf0737df (diff) |
irc/weechat: Remove CFLAGS+= Qunused-arguments
That switch is not recognized by GCC, and GCC 4.7 and later will
considered unrecognized switches as errors and break the build. This
was seen on dports, but can be reproduced on ports with USE_GCC=yes.
PR: 194575
Approved by: jase@ (maintainer)
Notes
Notes:
svn path=/head/; revision=371561
Diffstat (limited to 'irc')
-rw-r--r-- | irc/weechat/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/irc/weechat/Makefile b/irc/weechat/Makefile index 0f2c9718cb6d..3ab3ed83481c 100644 --- a/irc/weechat/Makefile +++ b/irc/weechat/Makefile @@ -89,7 +89,6 @@ BUILD_DEPENDS+= xsltproc:${PORTSDIR}/textproc/libxslt \ CMAKE_ARGS+= -DENABLE_MAN=yes -DMANDIR=${MANPREFIX}/man -DENABLE_DOC=yes .else CMAKE_ARGS+= -DENABLE_MAN=no -DENABLE_DOC=no -CFLAGS+= -Qunused-arguments .endif .include <bsd.port.options.mk> |