askpass install fix

This commit is contained in:
Damien Miller 1999-11-12 16:36:21 +11:00
parent 3ba1fe1943
commit 06e42932b2
2 changed files with 4 additions and 6 deletions

View File

@ -79,7 +79,7 @@ install: all
ln -sf ssh $(bindir)/slogin
ln -sf ssh.1 $(mandir)/man1/slogin.1
if [ ! -z "@DISABLE_EXTERNAL_ASKPASS@" ] ; then \
if [ ! -z "@INSTALL_ASKPASS@" ] ; then \
install -d $(libdir) ; \
install -d $(libdir)/ssh ; \
if [ -z "@GNOME_ASKPASS@" ] ; then \

View File

@ -111,11 +111,9 @@ fi
dnl Check whether use wants to disable the external ssh-askpass
AC_ARG_WITH(askpass,
[ --without-askpass Disable external ssh-askpass support],
[
AC_DEFINE(DISABLE_EXTERNAL_ASKPASS)
DISABLE_EXTERNAL_ASKPASS=yes
AC_SUBST(DISABLE_EXTERNAL_ASKPASS)
]
[AC_DEFINE(DISABLE_EXTERNAL_ASKPASS)],
[INSTALL_ASKPASS="yes"]
)
AC_SUBST(INSTALL_ASKPASS)
AC_OUTPUT(Makefile)