diff options
author | fredb <fredb@pkgsrc.org> | 2002-08-05 15:11:35 +0000 |
---|---|---|
committer | fredb <fredb@pkgsrc.org> | 2002-08-05 15:11:35 +0000 |
commit | 61a260e52c9815a672d3d2db14e0a0ce430ccf00 (patch) | |
tree | 937e6d62ce55489394e4f647c24c596d38c55903 /pkgtools/pkg_install | |
parent | 82e603bb860a8f7be80fbfd20ebeeb5457147815 (diff) | |
download | pkgsrc-61a260e52c9815a672d3d2db14e0a0ce430ccf00.tar.gz |
Reduce warning levels on NetBSD, to make this compile on the netbsd-1-5
branch. WARNS=2 turns on all kinds of stuff that isn't really appropriate,
and isn't turned on in current. "-Wwrite-strings", in particular, triggers
an error on a bit of harmless code in "file.c". Closes PR pkg/17840.
Diffstat (limited to 'pkgtools/pkg_install')
-rw-r--r-- | pkgtools/pkg_install/distinfo | 4 | ||||
-rw-r--r-- | pkgtools/pkg_install/patches/patch-aa | 13 |
2 files changed, 11 insertions, 6 deletions
diff --git a/pkgtools/pkg_install/distinfo b/pkgtools/pkg_install/distinfo index 60651a3cf3b..53c09d88c1e 100644 --- a/pkgtools/pkg_install/distinfo +++ b/pkgtools/pkg_install/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.14 2002/08/03 18:29:52 seb Exp $ +$NetBSD: distinfo,v 1.15 2002/08/05 15:11:35 fredb Exp $ SHA1 (pkg_install-20020723.tar.gz) = c16763363a8ff4341c866d50e40dfa2639288009 Size (pkg_install-20020723.tar.gz) = 81502 bytes -SHA1 (patch-aa) = 07e69e7f91c7dbedc8138821c569129b050a9707 +SHA1 (patch-aa) = 3a61d2bbc3d5f046c5e8325066a0d620637920eb SHA1 (patch-ab) = 0b5effbb41b34f96877d3f9494d6cf5054795414 SHA1 (patch-ac) = fb24ffdc0fbf4ca85d588afcfac39a960b763706 SHA1 (patch-ad) = a4dbed4ec4be7f008064bc50f17f20aacc4cf8b5 diff --git a/pkgtools/pkg_install/patches/patch-aa b/pkgtools/pkg_install/patches/patch-aa index 861cb409543..bd0284484cc 100644 --- a/pkgtools/pkg_install/patches/patch-aa +++ b/pkgtools/pkg_install/patches/patch-aa @@ -1,6 +1,6 @@ -$NetBSD: patch-aa,v 1.8 2002/08/03 18:29:53 seb Exp $ +$NetBSD: patch-aa,v 1.9 2002/08/05 15:11:35 fredb Exp $ ---- Makefile.inc.orig Thu Aug 1 10:46:30 2002 +--- Makefile.inc.orig Thu Aug 1 03:46:30 2002 +++ Makefile.inc @@ -3,6 +3,9 @@ @@ -12,7 +12,12 @@ $NetBSD: patch-aa,v 1.8 2002/08/03 18:29:53 seb Exp $ LIBINSTALL != cd ${.CURDIR}/../lib && ${PRINTOBJDIR} CPPFLAGS+=-I${.CURDIR}/../lib ${DEBUG} -DBINDIR='"${BINDIR}"' -@@ -24,7 +27,7 @@ WARNS=2 +@@ -20,11 +23,11 @@ + CHMOD?= /bin/chmod + CHOWN?= /usr/sbin/chown + CHGRP?= /usr/bin/chgrp +-WARNS=2 ++WARNS=1 .elif ${OPSYS} == "SunOS" LOCALBASE?= /usr/pkg TAR_CMD?= tar @@ -21,7 +26,7 @@ $NetBSD: patch-aa,v 1.8 2002/08/03 18:29:53 seb Exp $ ZOULARISBASE?= ${LOCALBASE}/bsd TAR_FULLPATHNAME?= ${ZOULARISBASE}/bin/${TAR_CMD} FTP_FULLPATHNAME?= ${ZOULARISBASE}/bin/${FTP_CMD} -@@ -36,9 +39,27 @@ CHOWN?= /usr/bin/chown +@@ -36,9 +39,27 @@ CHGRP?= /usr/bin/chgrp WARNS=0 .elif ${OPSYS} == "Linux" |