From owner-freebsd-gnome@FreeBSD.ORG Thu Jul 25 19:10:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 72B9879 for ; Thu, 25 Jul 2013 19:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5E56A2A68 for ; Thu, 25 Jul 2013 19:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r6PJA1j9099426 for ; Thu, 25 Jul 2013 19:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r6PJA1cE099425; Thu, 25 Jul 2013 19:10:01 GMT (envelope-from gnats) Date: Thu, 25 Jul 2013 19:10:01 GMT Message-Id: <201307251910.r6PJA1cE099425@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/180843: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jul 2013 19:10:01 -0000 The following reply was made to PR ports/180843; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/180843: commit references a PR Date: Thu, 25 Jul 2013 19:07:44 +0000 (UTC) Author: kwm Date: Thu Jul 25 19:07:37 2013 New Revision: 323663 URL: http://svnweb.freebsd.org/changeset/ports/323663 Log: 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@ Modified: head/Mk/Uses/desktop-file-utils.mk Modified: head/Mk/Uses/desktop-file-utils.mk ============================================================================== --- head/Mk/Uses/desktop-file-utils.mk Thu Jul 25 18:55:01 2013 (r323662) +++ head/Mk/Uses/desktop-file-utils.mk Thu Jul 25 19:07:37 2013 (r323663) @@ -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 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"