diff options
author | 1998-07-09 03:12:18 +0000 | |
---|---|---|
committer | 1998-07-09 03:12:18 +0000 | |
commit | ab42deb6d16eba9361faee6d7ab2324af854e40b (patch) | |
tree | b728b775c5260bcdccc295e6b62436436c307ed6 | |
parent | indent (diff) | |
download | wireguard-openbsd-ab42deb6d16eba9361faee6d7ab2324af854e40b.tar.xz wireguard-openbsd-ab42deb6d16eba9361faee6d7ab2324af854e40b.zip |
remove comment from packing list that must be added when
the package is installed, not when the plist is created
-rw-r--r-- | share/mk/bsd.port.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk index 47e07aa2546..e2ea821ca46 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.34 1998/07/08 03:27:17 marc Exp $ +# $OpenBSD: bsd.port.mk,v 1.35 1998/07/09 03:12:18 marc Exp $ # $NetBSD: $ # # bsd.port.mk - 940820 Jordan K. Hubbard. @@ -1534,6 +1534,8 @@ checksum: fetch # packing list utilities. This generates a packing list from a recently # installed port. Not perfect, but pretty close. The generated file # will have to have some tweaks done by hand. +# Note: add @comment PACKAGE(arch=${ARCH}, opsys=${OPSYS}, vers=${OPSYS_VER}) +# when port is installed or package created. # .if !target(plist) plist: install @@ -1542,7 +1544,6 @@ plist: install ld=""; \ ${ECHO} "@cwd ${PREFIX}"; \ ${ECHO} "@name ${PKGNAME}"; \ - ${ECHO} "@comment PACKAGE(arch=${ARCH}, opsys=${OPSYS}, vers=${OPSYS_VER})"; \ 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}/||'`; \ |