From: Jim Meyering Date: Fri, 8 Sep 2006 19:28:46 +0000 (+0000) Subject: * bootstrap: Export CVS_RSH separate from its assignment, to work X-Git-Tag: v6.2~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=262296271d6f5f178c54ae4b9a4186050acb3efa;p=thirdparty%2Fcoreutils.git * bootstrap: Export CVS_RSH separate from its assignment, to work even with Solaris 10's /bin/sh. Suggestion from Mark D. Baushke. --- diff --git a/ChangeLog b/ChangeLog index 73283c6c52..e204153fc8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-09-08 Jim Meyering + + * 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 * NEWS: tail now ignores the -f option if POSIXLY_CORRECT is set, diff --git a/bootstrap b/bootstrap index d4f65142ea..b4eec89857 100755 --- 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