From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 066F6138331 for ; Sat, 26 May 2018 20:18:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C22D1E08D4; Sat, 26 May 2018 20:18:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 98010E08D4 for ; Sat, 26 May 2018 20:18:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1DEC0335CAF for ; Sat, 26 May 2018 20:18:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 57819292 for ; Sat, 26 May 2018 20:17:58 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1527365748.c41104c34243115adc668fdb4280d991f8e401b9.williamh@gentoo> Subject: [gentoo-commits] proj/baselayout:master commit in: / X-VCS-Repository: proj/baselayout X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: c41104c34243115adc668fdb4280d991f8e401b9 X-VCS-Branch: master Date: Sat, 26 May 2018 20:17:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f695b1d5-ca41-4d21-9958-a9986c2765f2 X-Archives-Hash: 454d65504e57cab185b746e848dfa066 commit: c41104c34243115adc668fdb4280d991f8e401b9 Author: William Hubbs gentoo org> AuthorDate: Sat May 26 20:15:48 2018 +0000 Commit: William Hubbs gentoo org> CommitDate: Sat May 26 20:15:48 2018 +0000 URL: https://gitweb.gentoo.org/proj/baselayout.git/commit/?id=c41104c3 makefile: ignore touch failures for .keep files emerging with this being fatal worked for me, but not others, so ignoring it. Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e1eec2b1..5bfcad80 100644 --- a/Makefile +++ b/Makefile @@ -66,7 +66,7 @@ layout-dirs: # Create base filesytem layout for x in $(KEEP_DIRS) ; do \ $(INSTALL_DIR) $(DESTDIR)$$x || exit $$? ; \ - touch $(DESTDIR)$$x/.keep || exit $$? ; \ + touch $(DESTDIR)$$x/.keep || echo "ignoring touch failure; mounted fs?" ; \ done layout-BSD: layout-dirs