summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: bbf0d6f)
raw | patch | inline | side by side (parent: bbf0d6f)
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Sat, 1 Jul 2017 13:27:21 +0000 (15:27 +0200) | ||
committer | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Sat, 1 Jul 2017 13:27:21 +0000 (15:27 +0200) |
configure.ac | patch | blob | history |
diff --git a/configure.ac b/configure.ac
index 66a4348799c3dcd53ce33f1cf3258a56d19a6b4e..ea3038120bc463b8472e450ce3dc012d09e7deaa 100644 (file)
--- a/configure.ac
+++ b/configure.ac
AC_SUBST([LOAD_PLUGIN_LOGFILE])
AC_SUBST([LOAD_PLUGIN_LOG_LOGSTASH])
-if test "x$enable_debug" = "xyes"
-then
+if test "x$enable_debug" = "xyes"; then
DEFAULT_LOG_LEVEL="debug"
else
DEFAULT_LOG_LEVEL="info"
PERL_BINDINGS_OPTIONS="PREFIX=${prefix}"
AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@], [Options passed to "perl Makefile.PL".])],
[
- if test "x$withval" != "xno" && test "x$withval" != "xyes"
- then
+ if test "x$withval" != "xno" && test "x$withval" != "xyes"; then
PERL_BINDINGS_OPTIONS="$withval"
with_perl_bindings="yes"
else
@@ -6735,8 +6733,7 @@ AC_ARG_WITH(perl-bindings, [AS_HELP_STRING([--with-perl-bindings@<:@=OPTIONS@:>@
fi
],
[
- if test "x$PERL" != "x"
- then
+ if test "x$PERL" != "x"; then
with_perl_bindings="yes"
else
with_perl_bindings="no (no perl interpreter found)"
fi
fi
-if test "x$with_perl_bindings" = "xyes"
-then
+if test "x$with_perl_bindings" = "xyes"; then
PERL_BINDINGS="perl"
else
PERL_BINDINGS=""