File: install_helper.sh

package info (click to toggle)
sshfs-fuse 3.7.1%2Brepack-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 364 kB
  • sloc: ansic: 4,792; python: 496; sh: 82; makefile: 9
file content (19 lines) | stat: -rwxr-xr-x 412 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
#
# Don't call this script. It is used internally by the Meson
# build system. Thank you for your cooperation.
#

set -e

bindir="$2"
sbindir="$1"
prefix="${MESON_INSTALL_DESTDIR_PREFIX}"

mkdir -p "${prefix}/${sbindir}"

ln -svf --relative "${prefix}/${bindir}/sshfs" \
   "${prefix}/${sbindir}/mount.sshfs"

ln -svf --relative "${prefix}/${bindir}/sshfs" \
   "${prefix}/${sbindir}/mount.fuse.sshfs"