diff options
author | Martin Pool <mbp@samba.org> | 2001-09-06 06:30:09 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2001-09-06 06:30:09 +0000 |
commit | 6cd7888e46fb7611668c981ff8193c5f3d16d8a6 (patch) | |
tree | 0b3c2c2c10f2a2b280514a47455929c05bb3ecfc | |
parent | 1d54358e5207f5f5326dc9e9f362671275c86b22 (diff) | |
download | rsync-6cd7888e46fb7611668c981ff8193c5f3d16d8a6.tar.gz rsync-6cd7888e46fb7611668c981ff8193c5f3d16d8a6.tar.bz2 rsync-6cd7888e46fb7611668c981ff8193c5f3d16d8a6.zip |
You cannot do "export VAR=VALUE" all on one line; the export must be
separate from the assignment. (SCO SysV)
-rwxr-xr-x | runtests.sh | 3 | ||||
-rw-r--r-- | testsuite/daemon.test | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/runtests.sh b/runtests.sh index 9e4ee16d..64ba3173 100755 --- a/runtests.sh +++ b/runtests.sh @@ -97,6 +97,9 @@ # BSD machines tend not to have "head" or "seq". +# You cannot do "export VAR=VALUE" all on one line; the export must be +# separate from the assignment. (SCO SysV) + # STILL TO DO: diff --git a/testsuite/daemon.test b/testsuite/daemon.test index 8b1cab1a..87ebc099 100644 --- a/testsuite/daemon.test +++ b/testsuite/daemon.test @@ -26,6 +26,7 @@ build_rsyncd_conf -export RSYNC_CONNECT_PROG="$rsync_bin --config=$conf --daemon" +RSYNC_CONNECT_PROG="$rsync_bin --config=$conf --daemon" +export RSYNC_CONNECT_PROG $rsync_bin -v localhost:: |