diff options
author | Cem Keylan <cem@ckyln.com> | 2020-09-26 00:37:36 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-09-26 00:37:36 +0300 |
commit | 69aecbc935d022d46574adeca984ee0bdc6cdcb1 (patch) | |
tree | 968f20f7476058e1750b1f3b14d2256b8a1c5bf9 /extra/sftp/build | |
parent | 2f8df6641cf7068d5c51d83ce6c893943864c841 (diff) | |
download | repository-69aecbc935d022d46574adeca984ee0bdc6cdcb1.tar.gz |
openssh and sftp: move to extra, remove sftp
Diffstat (limited to 'extra/sftp/build')
-rwxr-xr-x | extra/sftp/build | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/extra/sftp/build b/extra/sftp/build deleted file mode 100755 index d2a9aa39..00000000 --- a/extra/sftp/build +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh -e - -# Standalone sftp client crashes without -# libedit, so it is mandatory. - -./configure \ - --prefix=/usr \ - --sbindir=/usr/bin \ - --datadir=/usr/share/openssh \ - --sysconfdir=/etc/ssh \ - --without-selinux \ - --with-privsep-user=nobody \ - --with-mantype=doc \ - --without-rpath \ - --disable-strip \ - --with-ssl-engine \ - --with-pid-dir=/run \ - --disable-wtmp \ - --disable-utmp \ - --with-libedit \ - -make sftp sftp-server - -mkdir -p "$1/usr/bin" "$1/usr/libexec" - -cp sftp "$1/usr/bin" -cp sftp-server "$1/usr/libexec" - -chmod 755 "$1/usr/bin/sftp" "$1/usr/libexec/sftp-server" |