From: Ondrej Zajicek (work) Date: Thu, 18 May 2017 10:05:09 +0000 (+0200) Subject: Fix minor bug in configure script X-Git-Tag: v2.0.0~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=271fa063a3e2078d7a046146ac2da3718b080cfa;p=thirdparty%2Fbird.git Fix minor bug in configure script Space in action branch breaks build on some platforms. --- diff --git a/configure.ac b/configure.ac index 9ae119b41..66e100df4 100644 --- a/configure.ac +++ b/configure.ac @@ -222,8 +222,8 @@ DAEMON_LIBS= AC_SUBST(DAEMON_LIBS) if test "$enable_libssh" != no ; then - AC_CHECK_HEADER([libssh/libssh.h], [ ], [fail=yes], [ ]) - AC_CHECK_LIB([ssh], [ssh_connect], [ ], [fail=yes]) + AC_CHECK_HEADER([libssh/libssh.h], [], [fail=yes], [ ]) + AC_CHECK_LIB([ssh], [ssh_connect], [], [fail=yes]) if test "$fail" != yes ; then AC_DEFINE([HAVE_LIBSSH], [1], [Define to 1 if you have the `ssh' library (-lssh).])