]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Fix minor bug in configure script
authorOndrej Zajicek (work) <santiago@crfreenet.org>
Thu, 18 May 2017 10:05:09 +0000 (12:05 +0200)
committerOndrej Zajicek (work) <santiago@crfreenet.org>
Thu, 18 May 2017 10:05:09 +0000 (12:05 +0200)
Space in action branch breaks build on some platforms.

configure.ac

index 9ae119b41a2a777c322d0a0e279a68bd531cf12d..66e100df43412166c1c7232335db88cecc2d01f7 100644 (file)
@@ -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).])