* bootstrap: Export CVS_RSH separate from its assignment, to work
authorJim Meyering <jim@meyering.net>
Fri, 8 Sep 2006 19:28:46 +0000 (19:28 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 8 Sep 2006 19:28:46 +0000 (19:28 +0000)
even with Solaris 10's /bin/sh.  Suggestion from Mark D. Baushke.

ChangeLog
bootstrap

index 73283c6..e204153 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-09-08  Jim Meyering  <jim@meyering.net>
+
+       * bootstrap: Export CVS_RSH separate from its assignment, to work
+       even with Solaris 10's /bin/sh.  Suggestion from Mark D. Baushke.
+
 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
 
        * NEWS: tail now ignores the -f option if POSIXLY_CORRECT is set,
index d4f6514..b4eec89 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -137,7 +137,7 @@ case ${GNULIB_SRCDIR--} in
     esac
 
     case $CVS_RSH in
-    '') export CVS_RSH=ssh;;
+    '') CVS_RSH=ssh; export CVS_RSH;;
     esac
 
     trap cleanup_gnulib 1 2 13 15