summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-19 12:43:19 +1100
committerDamien Miller <djm@mindrot.org>1999-11-19 12:43:19 +1100
commit18ac1719687a6671242d6a001cab01d55036ef8b (patch)
treee05129c47f263dbe7fdc7c14f353cab3e456428f /Makefile.in
parentdc9365bf8b4180fcbab32efd231d86760587be7f (diff)
- Move scp from ${libdir}/ssh to ${libexecdir}/ssh at request of
David Rankin <drankin@bohemians.lexington.ky.us>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index 664920d1..73c4db76 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -7,7 +7,7 @@ mandir=@mandir@
sysconfdir=@sysconfdir@
SSH_PROGRAM=@bindir@/ssh
-ASKPASS_PROGRAM=@libdir@/ssh/ssh-askpass
+ASKPASS_PROGRAM=@libexecdir@/ssh/ssh-askpass
CC=@CC@
PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DASKPASS_PROGRAM=\"$(ASKPASS_PROGRAM)\"
@@ -82,11 +82,11 @@ install: all
if [ "x@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}; \
else \
- install -m755 -c gnome-ssh-askpass $(libdir)/ssh/ssh-askpass; \
+ install -m755 -c gnome-ssh-askpass ${ASKPASS_PROGRAM}; \
fi ; \
fi