Displaying 5 results from an estimated 5 matches for "install_askpass".
1999 Nov 19
0
Request for change in ssh-askpass location after pre12
...=@libdir@/ssh/ssh-askpass
+ASKPASS_PROGRAM=@libexecdir@/ssh/ssh-askpass
CC=@CC@
PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DASKPASS_PROGRAM=\"$(ASKPASS_PROGRAM)\"
@@ -81,12 +81,11 @@
ln -sf ssh.1 $(mandir)/man1/slogin.1
if [ "x at INSTALL_ASKPASS@" = "xyes" ] ; then \
- install -d $(libdir) ; \
- install -d $(libdir)/ssh ; \
+ install -d $(libexecdir)/ssh ; \
if [ -z "@GNOME_ASKPASS@" ] ; then \
- install -m755 -c ssh-askpass $(libdir)/ssh/ssh-askpass; \
+ install -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \...
1999 Nov 22
1
[PATCH] A couple of small fixes for 1.2pre14.
...9
+++ 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_ASKPASS@" = "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.dk -- http:/...
1999 Nov 19
1
[solaris 7 patch] resubmit and extended ...
Okay, everything as the first large one I sent today, with a few extra
mods. _PATH_MAILDIR is only used in sshd.c, that I can see, so moved the
#ifdef from config.h.in to there.
several files had __progname defined in the middle of the code, as well as
at the top of the code, so cleaned those out.
all the fixes for u_int32_t -> uint32_t and u_int16_t -> uint16_t, plus
added appropriate
1999 Nov 23
0
[PATCH] Adding BSD compatible install script to 1.2pre14.
...LL) -m644 ssh-add.1 $(mandir)/man1/ssh-add.1
+ $(INSTALL) -m644 ssh-agent.1 $(mandir)/man1/ssh-agent.1
+ $(INSTALL) -m644 ssh-keygen.1 $(mandir)/man1/ssh-keygen.1
+ $(INSTALL) -m644 sshd.8 $(mandir)/man8/sshd.8
ln -sf ssh $(bindir)/slogin
ln -sf ssh.1 $(mandir)/man1/slogin.1
if [ "x at INSTALL_ASKPASS@" = "xyes" ] ; then \
- install -d $(libexecdir) ; \
- install -d $(libexecdir)/ssh ; \
+ $(INSTALL) -d $(libexecdir) ; \
+ $(INSTALL) -d $(libexecdir)/ssh ; \
if [ -z "@GNOME_ASKPASS@" ] ; then \
- install -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \
+ $(INSTALL)...
1999 Nov 23
2
Fixes for Solaris
...1/22 02:57:07 1.29
+++ Makefile.in 1999/11/22 11:31:49 1.30
@@ -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_ASKPASS@" = "xyes" ] ; then \
- install -d $(libdir) ; \
+ install -d $(libexecdir) ; \
install -d $(libexecdir)/ssh ; \
if [ -z "@GNOME_ASKPASS@" ] ; then \
install -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \
Index: README
===============================================...