summaryrefslogtreecommitdiff
path: root/Mk
diff options
context:
space:
mode:
authorKoop Mast <kwm@FreeBSD.org>2013-07-25 19:07:37 +0000
committerKoop Mast <kwm@FreeBSD.org>2013-07-25 19:07:37 +0000
commite03cd93ee24a3da154f8fce05fe4bcb47391192a (patch)
tree6becb7ec8271c316de0d29292ca2d0ab6bf55604 /Mk
parentUnbreak after base rev 253637 (diff)
Quiet update-desktop-database output, like when it complaining about invalid
MIME types in .desktop files. It all non-fatal, and ugly to boot. PR: ports/180843 Submitted by: pawel@
Notes
Notes: svn path=/head/; revision=323663
Diffstat (limited to 'Mk')
-rw-r--r--Mk/Uses/desktop-file-utils.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mk/Uses/desktop-file-utils.mk b/Mk/Uses/desktop-file-utils.mk
index 970a406abdc9..e5eca22a6c54 100644
--- a/Mk/Uses/desktop-file-utils.mk
+++ b/Mk/Uses/desktop-file-utils.mk
@@ -24,11 +24,11 @@ post-install: desktop-file-post-install
desktop-file-post-install:
# run for port post-install
- @-update-desktop-database
+ @-update-desktop-database -q
# plist entries for packages.
- @${ECHO_CMD} "@exec ${LOCALBASE}/bin/update-desktop-database > /dev/null || /usr/bin/true" \
+ @${ECHO_CMD} "@exec ${LOCALBASE}/bin/update-desktop-database -q > /dev/null || /usr/bin/true" \
>> ${TMPPLIST}; \
- ${ECHO_CMD} "@unexec ${LOCALBASE}/bin/update-desktop-database > /dev/null || /usr/bin/true" \
+ ${ECHO_CMD} "@unexec ${LOCALBASE}/bin/update-desktop-database -q > /dev/null || /usr/bin/true" \
>> ${TMPPLIST}
.endif