]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
* 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 73283c6c529b19d803bce3558c6d973b44928f92..e204153fc8b57d78801d057863d24971c9b52d67 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 d4f65142ea69fcbeda7ff48f92429c344dea2bdd..b4eec8985706d13481ce72088171bc1a35bf51a8 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