diff options
author | Marco S Hyman <marc@cvs.openbsd.org> | 1999-02-24 20:15:49 +0000 |
---|---|---|
committer | Marco S Hyman <marc@cvs.openbsd.org> | 1999-02-24 20:15:49 +0000 |
commit | a11a2ad79ecb131c699a700ef4d0c885e7d9af6a (patch) | |
tree | 3ddf3922c645f98e69a3f3532e1212e6c6767ab3 /share/mk/bsd.port.mk | |
parent | d8a392702cb74d48444a44de86f2004561b7db26 (diff) |
Do not include @name or @cwd in packing lists created by the plist target;
they are not necessary as the proper names are generated when
the package is installed; including them only adds work as they
must be verified and changed when the port changes; thanks to
fgsch@ for bringing this up
Diffstat (limited to 'share/mk/bsd.port.mk')
-rw-r--r-- | share/mk/bsd.port.mk | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk index d47fe9e43d9..88b7e23b5f7 100644 --- a/share/mk/bsd.port.mk +++ b/share/mk/bsd.port.mk @@ -1,6 +1,6 @@ #-*- mode: Fundamental; tab-width: 4; -*- # ex:ts=4 -# $OpenBSD: bsd.port.mk,v 1.68 1999/02/24 12:34:46 espie Exp $ +# $OpenBSD: bsd.port.mk,v 1.69 1999/02/24 20:15:48 marc Exp $ # # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. @@ -28,7 +28,7 @@ OpenBSD_MAINTAINER= marc@OpenBSD.ORG # NEED_VERSION: we need at least this version of bsd.port.mk for this # port to build -FULL_REVISION=$$OpenBSD: bsd.port.mk,v 1.68 1999/02/24 12:34:46 espie Exp $$ +FULL_REVISION=$$OpenBSD: bsd.port.mk,v 1.69 1999/02/24 20:15:48 marc Exp $$ .if defined(NEED_VERSION) _VERSION_REVISION=${FULL_REVISION:M[0-9]*.*} @@ -1751,8 +1751,6 @@ plist: install @${MKDIR} ${PKGDIR} @(dirs=""; \ ld=""; \ - ${ECHO} "@cwd ${PREFIX}"; \ - ${ECHO} "@name ${PKGNAME}"; \ for f in `${MAKE} package-depends|sort -u`; do ${ECHO} "@pkgdep $$f"; done; \ for f in `find ${PREFIX} -newer ${INSTALL_PRE_COOKIE} -print 2> /dev/null`; do \ ff=`${ECHO} $$f | ${SED} -e 's|^${PREFIX}/||'`; \ |