Displaying 2 results from an estimated 2 matches for "thisshouldgo".
2003 Apr 10
0
compile fixed, ssh-basic.test not working
...n pointed me at
build.samba.org, which in turn told me that the build farm is using cc
instead of gcc.
I was able to get the compile finished with cc and make (rather than gcc
and gmake).
One thing to note: I could only get the ssh-basic.test to work by adding a
kludge and commenting out the "ThisShouldGo Line."
# diff ssh-basic.orig ssh-basic.test
25a26,28
> mkdir -p /opt/rsync/rsync-2.5.6/testtmp.ssh-basic/from
> cp /tmp/* /opt/rsync/rsync-2.5.6/testtmp.ssh-basic/from
>
28c31
< mv ${TO}/${F1} ${TO}/ThisShouldGo
---
> #mv ${TO}/${F1} ${TO}/ThisShouldGo
Cheers,
John Campbell
Th...
2003 Feb 04
0
Rsync 2.5.6 ssh-basic.test patch
...uld detect a renamed file over ssh. Without this line below
+# it was unset so the "mv" tried to move a parent directory into a
+# subdirectory of itself. There is probably a better way of pulling out
+# a sample file to rename.
+F1=`ls ${TO} | head -5 | tail -1`
mv ${TO}/${F1} ${TO}/ThisShouldGo