From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 16 13:24:56 2014 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E04476EE; Fri, 16 May 2014 13:24:56 +0000 (UTC) Received: from apnoea.adamw.org (apnoea.adamw.org [204.109.59.150]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B66492E31; Fri, 16 May 2014 13:24:56 +0000 (UTC) Received: by apnoea.adamw.org (Postfix, from userid 1002) id A8BB611F8FB; Fri, 16 May 2014 09:24:55 -0400 (EDT) Date: Fri, 16 May 2014 09:24:55 -0400 From: Adam Weinberger To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/189859: Ignore .DS_Store files in STAGEDIR Message-ID: <20140516132455.GA39877@apnoea.adamw.org> References: <20140516131804.A478311F8FB@apnoea.adamw.org> <201405161320.s4GDK09e084039@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="G4iJoqBmSsgzjUCe" Content-Disposition: inline In-Reply-To: <201405161320.s4GDK09e084039@freefall.freebsd.org> X-Editor: Vim 7.3 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-Adamw: ADAMW!!! X-URL: http://www.adamw.org User-Agent: Mutt/1.5.23 (2014-03-12) Cc: Adam Weinberger X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 May 2014 13:24:57 -0000 --G4iJoqBmSsgzjUCe Content-Type: text/plain; charset=us-ascii Content-Disposition: inline n/m I found the appropriate script. This patch adds .DS_Store. --G4iJoqBmSsgzjUCe Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="whitelist1.patch" Index: check-stagedir.sh =================================================================== --- check-stagedir.sh (revision 354221) +++ check-stagedir.sh (working copy) @@ -281,6 +281,7 @@ case "${path}" in *.bak) ;; *.orig) ;; + *.DS_Store) ;; */info/dir|info/dir) ;; lib/X11/fonts/*/fonts.dir) ;; lib/X11/fonts/*/fonts.scale) ;; --G4iJoqBmSsgzjUCe--