From cc5653ae5d61cfd0ce94f0ecec5399f12d430ef4 Mon Sep 17 00:00:00 2001 From: Marc Fournier Date: Tue, 14 Apr 2015 08:30:17 +0200 Subject: [PATCH] write_kafka: fix typo preventing --with-librdkafka from working as expected --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0b8fa181..5557b0bf 100644 --- a/configure.ac +++ b/configure.ac @@ -3718,7 +3718,7 @@ fi # --with-librdkafka {{{ AC_ARG_WITH(librdkafka, [AS_HELP_STRING([--with-librdkafka@<:@=PREFIX@:>@], [Path to librdkafka.])], [ - if test "x$withval" = "xno" && test "x$withval" != "xyes" + if test "x$withval" != "xno" && test "x$withval" != "xyes" then with_librdkafka_cppflags="-I$withval/include" with_librdkafka_ldflags="-L$withval/lib" -- 2.30.2