# HG changeset patch # User Rob Landley # Date 1286513603 18000 # Node ID fecb576b7e1841146087a6ca2993623dfb4db23f # Parent 3ffcb56847e39d78a2640b8cb2fec347777a9106 Dropbear's scp shouldn't call /usr/bin/dbclient, it should just call ssh out of $PATH. diff -r 3ffcb56847e3 -r fecb576b7e18 sources/native-builds/static-tools.sh --- 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 &&