diff options
author | jlam <jlam@pkgsrc.org> | 2006-06-08 03:11:17 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-06-08 03:11:17 +0000 |
commit | 92a54f35b8d6a5ca9523ceaa809dd21fcd0a86f5 (patch) | |
tree | 852b44429619c07b3a2844106b47cfc27d098120 | |
parent | dbc62d966cd9fdaf8f4a88de194091952d378ac4 (diff) | |
download | pkgsrc-92a54f35b8d6a5ca9523ceaa809dd21fcd0a86f5.tar.gz |
Fix an inverted test that caused all catman pages to be stripped from
the PLIST on platforms where IMAKE_MANINSTALL != MANINSTALL, e.g.
Solaris. Solution noted by adrianp in private email. This should fix
the problem noted in PR pkg/33629.
-rw-r--r-- | mk/plist/plist.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/plist/plist.mk b/mk/plist/plist.mk index fa4b04e5314..5ea26ed098f 100644 --- a/mk/plist/plist.mk +++ b/mk/plist/plist.mk @@ -1,4 +1,4 @@ -# $NetBSD: plist.mk,v 1.12 2006/06/03 23:11:43 jlam Exp $ +# $NetBSD: plist.mk,v 1.13 2006/06/08 03:11:17 jlam Exp $ # # This Makefile fragment handles the creation of PLISTs for use by # pkg_create(8). @@ -68,9 +68,9 @@ PLIST= ${WRKDIR}/.PLIST ###################################################################### .if (defined(USE_IMAKE) || !empty(USE_TOOLS:Mimake)) -_IMAKE_MANINSTALL= # empty -.else _IMAKE_MANINSTALL= ${IMAKE_MANINSTALL} +.else +_IMAKE_MANINSTALL= # empty .endif _LIBTOOL_EXPAND= \ |