summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-apps/baselayout/files/baselayout-2.0.1-proc_touch.patch')
-rw-r--r--sys-apps/baselayout/files/baselayout-2.0.1-proc_touch.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/sys-apps/baselayout/files/baselayout-2.0.1-proc_touch.patch b/sys-apps/baselayout/files/baselayout-2.0.1-proc_touch.patch
deleted file mode 100644
index 7b7df7808388..000000000000
--- a/sys-apps/baselayout/files/baselayout-2.0.1-proc_touch.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-https://bugs.gentoo.org/232823
-http://sources.gentoo.org/cgi-bin/viewvc.cgi/baselayout/trunk/Makefile?r1=3171&r2=3172
-
---- Makefile
-+++ Makefile
-@@ -49,8 +49,9 @@
- layout:
- # Create base filesytem layout
- for x in $(KEEP_DIRS) ; do \
-+ test -e $(DESTDIR)$$x/.keep && continue ; \
- $(INSTALL_DIR) $(DESTDIR)$$x || exit $$? ; \
-- touch $(DESTDIR)$$x/.keep || exit $$? ; \
-+ touch $(DESTDIR)$$x/.keep || echo "ignoring touch failure; mounted fs?" ; \
- done
- # Special dirs
- install -m 0700 -d $(DESTDIR)/root || exit $$?