Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/baselayout:master commit in: /
Date: Sat, 26 May 2018 20:18:03
Message-Id: 1527365748.c41104c34243115adc668fdb4280d991f8e401b9.williamh@gentoo
1 commit: c41104c34243115adc668fdb4280d991f8e401b9
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 26 20:15:48 2018 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Sat May 26 20:15:48 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/baselayout.git/commit/?id=c41104c3
7
8 makefile: ignore touch failures for .keep files
9
10 emerging with this being fatal worked for me, but not others, so
11 ignoring it.
12
13 Makefile | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/Makefile b/Makefile
17 index e1eec2b1..5bfcad80 100644
18 --- a/Makefile
19 +++ b/Makefile
20 @@ -66,7 +66,7 @@ layout-dirs:
21 # Create base filesytem layout
22 for x in $(KEEP_DIRS) ; do \
23 $(INSTALL_DIR) $(DESTDIR)$$x || exit $$? ; \
24 - touch $(DESTDIR)$$x/.keep || exit $$? ; \
25 + touch $(DESTDIR)$$x/.keep || echo "ignoring touch failure; mounted fs?" ; \
26 done
27
28 layout-BSD: layout-dirs