Date: Tue, 9 Dec 2014 14:50:08 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374399 - in head/ports-mgmt: pkg pkg-devel Message-ID: <201412091450.sB9Eo8un004616@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Tue Dec 9 14:50:07 2014 New Revision: 374399 URL: https://svnweb.freebsd.org/changeset/ports/374399 QAT: https://qat.redports.org/buildarchive/r374399/ Log: Disable Werror to calm down gcc Modified: head/ports-mgmt/pkg-devel/Makefile head/ports-mgmt/pkg/Makefile Modified: head/ports-mgmt/pkg-devel/Makefile ============================================================================== --- head/ports-mgmt/pkg-devel/Makefile Tue Dec 9 14:34:56 2014 (r374398) +++ head/ports-mgmt/pkg-devel/Makefile Tue Dec 9 14:50:07 2014 (r374399) @@ -20,7 +20,7 @@ LICENSE= BSD2CLAUSE # With no dependency at all NO_CCACHE= yes WITH_DEBUG= yes -CFLAGS+= -O0 -g +CFLAGS+= -O0 -g -Wno-error USE_LDCONFIG= yes USES= libtool tar:xz GNU_CONFIGURE= yes Modified: head/ports-mgmt/pkg/Makefile ============================================================================== --- head/ports-mgmt/pkg/Makefile Tue Dec 9 14:34:56 2014 (r374398) +++ head/ports-mgmt/pkg/Makefile Tue Dec 9 14:50:07 2014 (r374399) @@ -28,6 +28,7 @@ INSTALL_TARGET= install-strip # Use a submake as 'deinstall install' needs to reevaluate PKG_CMD # so that pkg-static is used from the wrkdir USE_SUBMAKE= yes +CFLAGS+= -Wno-error .if !exists(/usr/include/jail.h) EXTRA_PATCHES= ${FILESDIR}/extra-patch-docs_pkg.8
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412091450.sB9Eo8un004616>