diff --git a/packages/network/openssh/install b/packages/network/openssh/install index 31437bb4c9..c7d5d48a5a 100755 --- a/packages/network/openssh/install +++ b/packages/network/openssh/install @@ -39,5 +39,7 @@ mkdir -p $INSTALL/usr/bin mkdir -p $INSTALL/usr/sbin cp $PKG_BUILD/sshd $INSTALL/usr/sbin/ -mkdir -p $INSTALL/usr/libexec - cp $PKG_BUILD/sftp-server $INSTALL/usr/libexec +if [ $SFTP_SERVER = "yes" ]; then + mkdir -p $INSTALL/usr/libexec + cp $PKG_BUILD/sftp-server $INSTALL/usr/libexec +fi diff --git a/projects/ATV/options b/projects/ATV/options index 2bf127f60b..0b52d8d9f6 100644 --- a/projects/ATV/options +++ b/projects/ATV/options @@ -140,6 +140,9 @@ # build and install Samba Server (yes / no) SAMBA_SERVER="yes" +# build and install SFTP Server (yes / no) + SFTP_SERVER="yes" + # build and install some tools for including in release (yes / no) # some of this tools are: htop, nano, wgetpaste TOOLS="yes" diff --git a/projects/Generic/options b/projects/Generic/options index 8b8093a784..f973bbecb3 100644 --- a/projects/Generic/options +++ b/projects/Generic/options @@ -140,6 +140,9 @@ # build and install Samba Server (yes / no) SAMBA_SERVER="yes" +# build and install SFTP Server (yes / no) + SFTP_SERVER="yes" + # build and install some tools for including in release (yes / no) # some of this tools are: htop, nano, wgetpaste TOOLS="yes" diff --git a/projects/ION/options b/projects/ION/options index c1d12b252e..c6f869ea41 100644 --- a/projects/ION/options +++ b/projects/ION/options @@ -140,6 +140,9 @@ # build and install Samba Server (yes / no) SAMBA_SERVER="yes" +# build and install SFTP Server (yes / no) + SFTP_SERVER="yes" + # build and install some tools for including in release (yes / no) # some of this tools are: htop, nano, wgetpaste TOOLS="yes" diff --git a/projects/Intel/options b/projects/Intel/options index ad07c64753..43d9876d2e 100644 --- a/projects/Intel/options +++ b/projects/Intel/options @@ -140,6 +140,9 @@ # build and install Samba Server (yes / no) SAMBA_SERVER="yes" +# build and install SFTP Server (yes / no) + SFTP_SERVER="yes" + # build and install some tools for including in release (yes / no) # some of this tools are: htop, nano, wgetpaste TOOLS="yes"