svn commit: r376662 - head/Mk

Bryan Drewery bdrewery at FreeBSD.org
Fri Jan 9 21:43:19 UTC 2015


Author: bdrewery
Date: Fri Jan  9 21:43:18 2015
New Revision: 376662
URL: https://svnweb.freebsd.org/changeset/ports/376662
QAT: https://qat.redports.org/buildarchive/r376662/

Log:
  Rename post-plist to ${POST_PLIST}. This will allow controlling order and
  adding multiple hooks onto the end of plist processing.
  
  Submitted by:	bapt
  With hat:	portmgr

Modified:
  head/Mk/bsd.port.mk

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Fri Jan  9 21:39:45 2015	(r376661)
+++ head/Mk/bsd.port.mk	Fri Jan  9 21:43:18 2015	(r376662)
@@ -5912,7 +5912,7 @@ _BUILD_SEQ=		build-message pre-build pre
 _STAGE_DEP=		build
 _STAGE_SEQ=		stage-message stage-dir run-depends lib-depends apply-slist pre-install generate-plist \
 				pre-su-install
-# post-plist must be after anything that modifies TMPPLIST
+# ${POST_PLIST} must be after anything that modifies TMPPLIST
 .if defined(NEED_ROOT)
 _STAGE_SUSEQ=	create-users-groups do-install \
 				kmod-post-install fix-perl-things \
@@ -5921,7 +5921,7 @@ _STAGE_SUSEQ=	create-users-groups do-ins
 				install-rc-script install-ldconfig-file install-license \
 				install-desktop-entries add-plist-info add-plist-docs \
 				add-plist-examples add-plist-data add-plist-post \
-				move-uniquefiles-plist post-plist
+				move-uniquefiles-plist ${POST_PLIST}
 .if defined(DEVELOPER)
 _STAGE_SUSEQ+=	stage-qa
 .endif
@@ -5933,7 +5933,7 @@ _STAGE_SEQ+=	create-users-groups do-inst
 				install-rc-script install-ldconfig-file install-license \
 				install-desktop-entries add-plist-info add-plist-docs \
 				add-plist-examples add-plist-data add-plist-post \
-				move-uniquefiles-plist post-plist
+				move-uniquefiles-plist ${POST_PLIST}
 .if defined(DEVELOPER)
 _STAGE_SEQ+=	stage-qa
 .endif


More information about the svn-ports-all mailing list