logo

etc_portage

Unnamed repository; edit this file 'description' to name the repository. git clone https://anongit.hacktivis.me/git/etc_portage.git/
commit: 5ebd76c08b77de35c5277fda3adebef150ed66e1
parent 1d37899589f80f9fc0a0e98bb16bbddfe0c21fed
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Fri, 18 Jul 2025 11:24:05 +0200

patches/net-fs/sshfs: add 0001-utils-install_helper.sh-create-absolute-symlinks.patch

Diffstat:

Apatches/net-fs/sshfs/0001-utils-install_helper.sh-create-absolute-symlinks.patch30++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+), 0 deletions(-)

diff --git a/patches/net-fs/sshfs/0001-utils-install_helper.sh-create-absolute-symlinks.patch b/patches/net-fs/sshfs/0001-utils-install_helper.sh-create-absolute-symlinks.patch @@ -0,0 +1,30 @@ +https://github.com/libfuse/sshfs/pull/330 + +From 15ba50400b761380a4c354c1954e34614ad2cd22 Mon Sep 17 00:00:00 2001 +From: "Haelwenn (lanodan) Monnier" <contact@hacktivis.me> +Date: Fri, 18 Jul 2025 10:59:43 +0200 +Subject: [PATCH] utils/install_helper.sh: create absolute symlinks + +This avoid the coreutils-only --relative option +--- + utils/install_helper.sh | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/utils/install_helper.sh b/utils/install_helper.sh +index c62686c..33fb000 100755 +--- a/utils/install_helper.sh ++++ b/utils/install_helper.sh +@@ -12,8 +12,8 @@ + + mkdir -p "${prefix}/${sbindir}" + +-ln -svf --relative "${prefix}/${bindir}/sshfs" \ ++ln -svf "${MESON_INSTALL_PREFIX}/${bindir}/sshfs" \ + "${prefix}/${sbindir}/mount.sshfs" + +-ln -svf --relative "${prefix}/${bindir}/sshfs" \ ++ln -svf "${MESON_INSTALL_PREFIX}/${bindir}/sshfs" \ + "${prefix}/${sbindir}/mount.fuse.sshfs" +-- +2.49.1 +