pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk/plist Fix an inverted test that caused all catman p...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/32a8050c00bb
branches:  trunk
changeset: 514125:32a8050c00bb
user:      jlam <jlam%pkgsrc.org@localhost>
date:      Thu Jun 08 03:11:17 2006 +0000

description:
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.

diffstat:

 mk/plist/plist.mk |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (21 lines):

diff -r 2ebfdeb4e159 -r 32a8050c00bb mk/plist/plist.mk
--- a/mk/plist/plist.mk Thu Jun 08 02:26:32 2006 +0000
+++ b/mk/plist/plist.mk Thu Jun 08 03:11:17 2006 +0000
@@ -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 @@
 ######################################################################
 
 .if (defined(USE_IMAKE) || !empty(USE_TOOLS:Mimake))
-_IMAKE_MANINSTALL=     # empty
+_IMAKE_MANINSTALL=     ${IMAKE_MANINSTALL}
 .else
-_IMAKE_MANINSTALL=     ${IMAKE_MANINSTALL}
+_IMAKE_MANINSTALL=     # empty
 .endif
 
 _LIBTOOL_EXPAND=                                                       \



Home | Main Index | Thread Index | Old Index