
nkbj at image
Nov 22, 1999, 1:05 AM
Post #1 of 2
(419 views)
Permalink
|
|
[PATCH] A couple of small fixes for 1.2pre14.
|
|
Hi, This patch fixes a couple of small items in 1.2.pre14: 1. It's ssh-askpass, not scp that was moved to $(libexecdir)/ssh. 2. Make sure that $(libexecdir) exists. --- openssh-1.2pre14/ChangeLog~ Mon Nov 22 08:11:23 1999 +++ openssh-1.2pre14/ChangeLog Mon Nov 22 09:48:15 1999 @@ -60,7 +60,7 @@ - EGD uses a socket, not a named pipe. Duh. - Fix includes in fingerprint.c - Fix scp progress bar bug again. - - Move scp from ${libdir}/ssh to ${libexecdir}/ssh at request of + - Move ssh-askpass from ${libdir}/ssh to ${libexecdir}/ssh at request of David Rankin <drankin [at] bohemians> - Added autoconf option to enable Kerberos 4 support (untested) - Added autoconf option to enable AFS support (untested) --- openssh-1.2pre14/Makefile.in~ Mon Nov 22 03:57:07 1999 +++ openssh-1.2pre14/Makefile.in Mon Nov 22 09:46:51 1999 @@ -2,7 +2,6 @@ exec_prefix=@exec_prefix@ bindir=@bindir@ sbindir=@sbindir@ -libdir=@libdir@ libexecdir=@libexecdir@ mandir=@mandir@ sysconfdir=@sysconfdir@ @@ -83,7 +82,7 @@ ln -sf ssh.1 $(mandir)/man1/slogin.1 if [ "x [at] INSTALL_ASKPAS@" = "xyes" ] ; then \ - install -d $(libdir) ; \ + install -d $(libexecdir) ; \ install -d $(libexecdir)/ssh ; \ if [ -z "@GNOME_ASKPASS@" ] ; then \ install -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \ -- Niels Kristian Bech Jensen -- nkbj [at] image -- http://www.image.dk/~nkbj/ ----------->> Stop software piracy --- use free software! <<-----------
|