summaryrefslogtreecommitdiff
path: root/sys-process/atop/files/atop-2.5.0-install_fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'sys-process/atop/files/atop-2.5.0-install_fix.patch')
-rw-r--r--sys-process/atop/files/atop-2.5.0-install_fix.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/sys-process/atop/files/atop-2.5.0-install_fix.patch b/sys-process/atop/files/atop-2.5.0-install_fix.patch
deleted file mode 100644
index b46e88c76f3c..000000000000
--- a/sys-process/atop/files/atop-2.5.0-install_fix.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 485a453d2ae5700874a57dffc297030254b5ae7c Mon Sep 17 00:00:00 2001
-From: BlackEagle <ike.devolder@gmail.com>
-Date: Mon, 4 Nov 2019 09:00:54 +0100
-Subject: [PATCH] DEFPATH not created so touch fails
-
-```
-touch /build/atop/pkg/atop/etc/default/atop
-touch: cannot touch '/build/atop/pkg/atop/etc/default/atop': No such file or directory
-```
-
-Add DEFPATH mkdir in genericinstall to make sure the folder
-`$(DESTDIR)/etc/default` exits
-
-Signed-off-by: BlackEagle <ike.devolder@gmail.com>
----
- Makefile | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/Makefile b/Makefile
-index 929b0d7..a662fd6 100644
---- a/Makefile
-+++ b/Makefile
-@@ -140,6 +140,8 @@ sysvinstall: genericinstall
- genericinstall: atop atopacctd atopconvert
- if [ ! -d $(DESTDIR)$(LOGPATH) ]; \
- then mkdir -p $(DESTDIR)$(LOGPATH); fi
-+ if [ ! -d $(DESTDIR)$(DEFPATH) ]; \
-+ then mkdir -p $(DESTDIR)$(DEFPATH); fi
- if [ ! -d $(DESTDIR)$(BINPATH) ]; \
- then mkdir -p $(DESTDIR)$(BINPATH); fi
- if [ ! -d $(DESTDIR)$(SBINPATH) ]; \