summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2021-08-22 18:05:43 +0200
committerLars Wendler <polynomial-c@gentoo.org>2021-08-22 18:05:43 +0200
commit6db255a92e559a77f390c196c0532a811ac12b60 (patch)
tree0bd3cfc381b985abf046b8b7f429f670e5ef7b8d /net-fs/cifs-utils/files/cifs-utils-6.10-ln_in_destdir.patch
parentRevert "profiles/arch/hppa/use.mask: allow Python 3.10" (diff)
downloadgentoo-6db255a92e559a77f390c196c0532a811ac12b60.tar.gz
gentoo-6db255a92e559a77f390c196c0532a811ac12b60.tar.bz2
gentoo-6db255a92e559a77f390c196c0532a811ac12b60.zip
net-fs/cifs-utils: Removed old
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'net-fs/cifs-utils/files/cifs-utils-6.10-ln_in_destdir.patch')
-rw-r--r--net-fs/cifs-utils/files/cifs-utils-6.10-ln_in_destdir.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/net-fs/cifs-utils/files/cifs-utils-6.10-ln_in_destdir.patch b/net-fs/cifs-utils/files/cifs-utils-6.10-ln_in_destdir.patch
deleted file mode 100644
index 6952d72cf5c4..000000000000
--- a/net-fs/cifs-utils/files/cifs-utils-6.10-ln_in_destdir.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Fix sandbox violation caused by calling ln in /sbin instead of $(DESTDIR)/sbin
-
-Also fixed an inverted race condition when installing with MAKEOPTS="-j1"
-
-jer found this:
- install-root_sbinPROGRAMS is called from install-data-am but
- install-exec-hook is called from install-exec-am
-
-So moving the failing ln call into install-data-hook for now...
-
---- cifs-utils-6.10/Makefile.am
-+++ cifs-utils-6.10/Makefile.am
-@@ -118,11 +118,9 @@
-
- SUBDIRS = contrib
-
--install-exec-hook:
-- (cd $(ROOTSBINDIR) && ln -sf mount.cifs mount.smb3)
--
- install-data-hook:
-- (cd $(man8dir) && ln -sf mount.cifs.8 mount.smb3.8)
-+ (cd $(DESTDIR)$(ROOTSBINDIR) && ln -sf mount.cifs mount.smb3)
-+ (cd $(DESTDIR)$(man8dir) && ln -sf mount.cifs.8 mount.smb3.8)
-
- uninstall-hook:
- (cd $(ROOTSBINDIR) && rm -f $(ROOTSBINDIR)/mount.smb3)