Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Jun 2020 12:37:30 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r540387 - head/Mk
Message-ID:  <202006251237.05PCbUCo019208@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Thu Jun 25 12:37:30 2020
New Revision: 540387
URL: https://svnweb.freebsd.org/changeset/ports/540387

Log:
  A PLIST file is supposed to be self contained, reset owner/group/mode
  after each.
  
  Differential Revision:	https://reviews.freebsd.org/D25295

Modified:
  head/Mk/bsd.port.mk   (contents, props changed)

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Thu Jun 25 12:37:26 2020	(r540386)
+++ head/Mk/bsd.port.mk	Thu Jun 25 12:37:30 2020	(r540387)
@@ -4502,6 +4502,7 @@ generate-plist: ${WRKDIR}
 .for f in ${PLIST}
 	@if [ -f "${f}" ]; then \
 		${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${f} >> ${TMPPLIST}; \
+		for i in owner group mode; do ${ECHO_CMD} "@$$i"; done >> ${TMPPLIST}; \
 	fi
 .endfor
 .endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006251237.05PCbUCo019208>