commit: c41104c34243115adc668fdb4280d991f8e401b9
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sat May 26 20:15:48 2018 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> 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