diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2015-01-10 05:43:18 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2015-01-10 05:43:18 +0800 |
commit | 6630188a086598142f1fb27ef4619378a0fdffba (patch) | |
tree | db652134eaf2d545b5f5ba39e193ef25030455d8 /Mk | |
parent | b81fc40c720947dc73df1229a572d41fb51943de (diff) | |
download | freebsd-ports-gnome-6630188a086598142f1fb27ef4619378a0fdffba.tar.gz freebsd-ports-gnome-6630188a086598142f1fb27ef4619378a0fdffba.tar.zst freebsd-ports-gnome-6630188a086598142f1fb27ef4619378a0fdffba.zip |
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
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 0248fc5d8b50..b7e2d2f1efd1 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -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 |