1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-29 10:18:30 +00:00

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
This commit is contained in:
Bryan Drewery 2015-01-09 21:43:18 +00:00
parent ca49579fa4
commit 400808592c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=376662

View File

@ -5912,7 +5912,7 @@ _BUILD_SEQ= build-message pre-build pre-build-script do-build \
_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-install \
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-install \
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