Call for testing: OpenSSH 6.9
Ángel González
keisial at gmail.com
Thu Jun 4 09:39:07 AEST 2015
On 29/05/15 09:12, Damien Miller wrote:
> Hi,
>
> OpenSSH 6.9 is almost ready for release, so we would appreciate testing
> on as many platforms and systems as possible.
$ ./configure --help | grep -F '\$'
--with-ipaddr-display Use ip address instead of hostname in \$DISPLAY
--with-default-path= Specify default \$PATH environment for server
The following patch solves it:
diff --git a/configure.ac b/configure.ac
index 68ce7d6..b6f9302 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4356,7 +4356,7 @@ if test ! -z "$IPADDR_IN_DISPLAY" ; then
else
DISPLAY_HACK_MSG="no"
AC_ARG_WITH([ipaddr-display],
- [ --with-ipaddr-display Use ip address instead of
hostname in \$DISPLAY],
+ [ --with-ipaddr-display Use ip address instead of
hostname in $DISPLAY],
[
if test "x$withval" != "xno" ; then
AC_DEFINE([IPADDR_IN_DISPLAY])
@@ -4402,7 +4402,7 @@ fi
# Whether to mess with the default path
SERVER_PATH_MSG="(default)"
AC_ARG_WITH([default-path],
- [ --with-default-path= Specify default \$PATH environment
for server],
+ [ --with-default-path= Specify default $PATH environment for
server],
[
if test "x$external_path_file" = "x/etc/login.conf" ; then
AC_MSG_WARN([
More information about the openssh-unix-dev
mailing list