mirror of git://anongit.mindrot.org/openssh.git
askpass install fix
This commit is contained in:
parent
3ba1fe1943
commit
06e42932b2
|
@ -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 \
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue