changeset 1260:fecb576b7e18

Dropbear's scp shouldn't call /usr/bin/dbclient, it should just call ssh out of $PATH.
author Rob Landley <rob@landley.net>
date Thu, 07 Oct 2010 23:53:23 -0500
parents 3ffcb56847e3
children e093423880fc
files sources/native-builds/static-tools.sh
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/sources/native-builds/static-tools.sh	Thu Oct 07 23:52:23 2010 -0500
+++ b/sources/native-builds/static-tools.sh	Thu Oct 07 23:53:23 2010 -0500
@@ -62,6 +62,7 @@
 cp -sfR /mnt/dropbear dropbear &&
 cd dropbear &&
 CFLAGS="-I ../zlib -Os" LDFLAGS="--static -L ../zlib" ./configure &&
+sed -i 's@/usr/bin/dbclient@ssh@' options.h &&
 make -j $CPUS PROGRAMS="dropbear dbclient dropbearkey dropbearconvert scp" MULTI=1 SCPPROGRESS=1 &&
 strip dropbearmulti &&
 upload_result dropbearmulti &&