diff options
author | bapt <bapt@FreeBSD.org> | 2014-05-07 23:41:33 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-05-07 23:41:33 +0800 |
commit | 7c8d8f3c5a169c0baff62739fe8082b7fd1bf304 (patch) | |
tree | c2ea34d92f71bf270738f166afecce87d8a37d94 /Mk/bsd.port.mk | |
parent | 1e2f832dbc4dd17ab9b8f57848e50e4ed8c196fd (diff) | |
download | freebsd-ports-gnome-7c8d8f3c5a169c0baff62739fe8082b7fd1bf304.tar.gz freebsd-ports-gnome-7c8d8f3c5a169c0baff62739fe8082b7fd1bf304.tar.zst freebsd-ports-gnome-7c8d8f3c5a169c0baff62739fe8082b7fd1bf304.zip |
Move updating the desktop database later to make sure it work as expected with pkg_install
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index b5dc7310b672..0c5693d77c52 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -6545,9 +6545,10 @@ _STAGE_DEP= build _STAGE_SEQ= stage-message stage-dir run-depends lib-depends apply-slist pre-install generate-plist \ pre-su-install .if defined(NEED_ROOT) -_STAGE_SUSEQ= create-users-groups do-install desktop-file-post-install \ +_STAGE_SUSEQ= create-users-groups do-install \ kmod-post-install shared-mime-post-install \ webplugin-post-install post-install post-install-script \ + desktop-file-post-install \ move-uniquefiles post-stage compress-man patch-lafiles \ install-rc-script install-ldconfig-file install-license \ install-desktop-entries add-plist-info add-plist-docs \ @@ -6557,9 +6558,10 @@ _STAGE_SUSEQ= create-users-groups do-install desktop-file-post-install \ _STAGE_SUSEQ+= stage-qa .endif .else -_STAGE_SEQ+= create-users-groups do-install desktop-file-post-install \ +_STAGE_SEQ+= create-users-groups do-install \ kmod-post-install shared-mime-post-install \ webplugin-post-install post-install post-install-script \ + desktop-file-post-install \ move-uniquefiles post-stage compress-man patch-lafiles \ install-rc-script install-ldconfig-file install-license \ install-desktop-entries add-plist-info add-plist-docs \ |