diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | bootstrap | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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, @@ -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 |