summaryrefslogtreecommitdiff
path: root/pkgtools/pkglint/Makefile
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2005-11-13 17:39:05 +0000
committerrillig <rillig@pkgsrc.org>2005-11-13 17:39:05 +0000
commit273de48d5ac3e8b7194c296781ca15ae348cca63 (patch)
tree066ea6d7cd656b3ac3d157deca7bd041a463ffb1 /pkgtools/pkglint/Makefile
parent7a7ec6c84bf89e02c29aada16891809e61303db4 (diff)
downloadpkgsrc-273de48d5ac3e8b7194c296781ca15ae348cca63.tar.gz
The exitcode from running pkglint in the post-install target is ignored,
since the pkglint Makefile sets MANINSTALL but shouldn't, as this variable is intended to be user-defined. This is only a work-around, which needs to be addressed properly for the other packages setting MANINSTALL, too.
Diffstat (limited to 'pkgtools/pkglint/Makefile')
-rw-r--r--pkgtools/pkglint/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/pkglint/Makefile b/pkgtools/pkglint/Makefile
index 2406c2136de..fbee40f145b 100644
--- a/pkgtools/pkglint/Makefile
+++ b/pkgtools/pkglint/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.292 2005/11/10 14:30:56 rillig Exp $
+# $NetBSD: Makefile,v 1.293 2005/11/13 17:39:05 rillig Exp $
#
DISTNAME= pkglint-4.40
@@ -58,6 +58,6 @@ do-install:
${INSTALL_DATA} ${FILESDIR}/deprecated.map ${PREFIX}/share/pkglint/
post-install:
- ${PREFIX}/bin/pkglint -q 1>&2
+ ${PREFIX}/bin/pkglint -q 1>&2 || ${TRUE}
.include "../../mk/bsd.pkg.mk"