diff options
author | ryoon <ryoon@pkgsrc.org> | 2015-06-04 16:38:10 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2015-06-04 16:38:10 +0000 |
commit | 2bc0850be085120ecc7dfab64862713e6259e505 (patch) | |
tree | a14b331cdb94885fed2e08fd9a7b43885ae000ed | |
parent | 5bcf72921feba28b6645850ad3a46a048bcc2413 (diff) | |
download | pkgsrc-2bc0850be085120ecc7dfab64862713e6259e505.tar.gz |
Update to 20150605
* If NOGCCERROR is not defined, add -Wno-error to CFLAGS instead of -Werror.
NOGCCERROR means 'do not treat warnings as errors'.
-rw-r--r-- | pkgtools/bootstrap-mk-files/Makefile | 4 | ||||
-rw-r--r-- | pkgtools/bootstrap-mk-files/files/bsd.sys.mk | 4 | ||||
-rw-r--r-- | pkgtools/bootstrap-mk-files/files/mods/SunOS.bsd.sys.mk | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/pkgtools/bootstrap-mk-files/Makefile b/pkgtools/bootstrap-mk-files/Makefile index eaba144b135..17c5782b1ea 100644 --- a/pkgtools/bootstrap-mk-files/Makefile +++ b/pkgtools/bootstrap-mk-files/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2014/11/22 16:32:13 bsiegert Exp $ +# $NetBSD: Makefile,v 1.45 2015/06/04 16:38:10 ryoon Exp $ -PKGNAME= bootstrap-mk-files-20141122 +PKGNAME= bootstrap-mk-files-20150605 CATEGORIES= pkgtools CONFLICTS+= mk-files-[0-9]* diff --git a/pkgtools/bootstrap-mk-files/files/bsd.sys.mk b/pkgtools/bootstrap-mk-files/files/bsd.sys.mk index 8ba7d174a80..183eeb4ead0 100644 --- a/pkgtools/bootstrap-mk-files/files/bsd.sys.mk +++ b/pkgtools/bootstrap-mk-files/files/bsd.sys.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.sys.mk,v 1.1.1.1 2006/07/14 23:13:01 jlam Exp $ +# $NetBSD: bsd.sys.mk,v 1.2 2015/06/04 16:38:10 ryoon Exp $ # # Overrides used for NetBSD source tree builds. @@ -22,7 +22,7 @@ CFLAGS+=-Wnetbsd-format-audit -Wno-format-extra-args .endif .if !defined(NOGCCERROR) -CFLAGS+= -Werror +CFLAGS+= -Wno-error .endif CFLAGS+= ${CWARNFLAGS} diff --git a/pkgtools/bootstrap-mk-files/files/mods/SunOS.bsd.sys.mk b/pkgtools/bootstrap-mk-files/files/mods/SunOS.bsd.sys.mk index f335afcae73..44529066210 100644 --- a/pkgtools/bootstrap-mk-files/files/mods/SunOS.bsd.sys.mk +++ b/pkgtools/bootstrap-mk-files/files/mods/SunOS.bsd.sys.mk @@ -1,4 +1,4 @@ -# $NetBSD: SunOS.bsd.sys.mk,v 1.1.1.1 2006/07/14 23:13:01 jlam Exp $ +# $NetBSD: SunOS.bsd.sys.mk,v 1.2 2015/06/04 16:38:10 ryoon Exp $ # # Overrides used for NetBSD source tree builds. @@ -27,7 +27,7 @@ CFLAGS+= -Wnetbsd-format-audit -Wno-format-extra-args .endif .if !defined(NOGCCERROR) -CFLAGS+= -Werror +CFLAGS+= -Wno-error .endif CFLAGS+= ${CWARNFLAGS} |