- (tim) [regress/host-expand.sh] Fix for building outside of read only
   source tree.
diff --git a/regress/host-expand.sh b/regress/host-expand.sh
index c0417d9..a018836 100644
--- a/regress/host-expand.sh
+++ b/regress/host-expand.sh
@@ -5,14 +5,14 @@
 echo 'PermitLocalCommand yes' >> $OBJ/ssh_proxy
 printf 'LocalCommand printf "%%%%s\\n" "%%n" "%%h"\n' >> $OBJ/ssh_proxy
 
-cat >expect <<EOE
+cat >$OBJ/expect <<EOE
 somehost
 127.0.0.1
 EOE
 
 for p in 1 2; do
 	verbose "test $tid: proto $p"
-	${SSH} -F $OBJ/ssh_proxy -$p somehost true >actual
-	diff expect actual || fail "$tid proto $p"
+	${SSH} -F $OBJ/ssh_proxy -$p somehost true >$OBJ/actual
+	diff $OBJ/expect $OBJ/actual || fail "$tid proto $p"
 done