write_kafka: fix typo preventing --with-librdkafka from working as expected
authorMarc Fournier <marc.fournier@camptocamp.com>
Tue, 14 Apr 2015 06:30:17 +0000 (08:30 +0200)
committerMarc Fournier <marc.fournier@camptocamp.com>
Tue, 14 Apr 2015 07:24:35 +0000 (09:24 +0200)
configure.ac

index 0b8fa18..5557b0b 100644 (file)
@@ -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"