From 6cd7888e46fb7611668c981ff8193c5f3d16d8a6 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Thu, 6 Sep 2001 06:30:09 +0000 Subject: [PATCH] You cannot do "export VAR=VALUE" all on one line; the export must be separate from the assignment. (SCO SysV) --- runtests.sh | 3 +++ testsuite/daemon.test | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) 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:: -- 2.34.1