configure: code shrink
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Mon, 25 Feb 2019 09:28:46 +0000 (10:28 +0100)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Mon, 25 Feb 2019 09:28:46 +0000 (10:28 +0100)
When defining enable arguments, we don't need a full if-else spanning
multiple lines. We only care about the 'true' value, so pull the
relevant code into a single line.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
configure.ac

index 4d86c2f92217e20adb5a39e84cf4cb97a3011c71..3d27bcc2f13c261d422ed0af1c2f124c3a6fefc0 100644 (file)
@@ -87,14 +87,7 @@ AC_CHECK_HEADERS([linux/gpio.h], [], [HEADER_NOT_FOUND_LIB([linux/gpio.h])])
 AC_ARG_ENABLE([tools],
        [AC_HELP_STRING([--enable-tools],
                [enable libgpiod command-line tools [default=no]])],
-       [
-               if test "x$enableval" = xyes
-               then
-                       with_tools=true
-               else
-                       with_tools=false
-               fi
-       ],
+       [if test "x$enableval" = xyes; then with_tools=true; fi],
        [with_tools=false])
 AM_CONDITIONAL([WITH_TOOLS], [test "x$with_tools" = xtrue])
 
@@ -116,14 +109,7 @@ fi
 AC_ARG_ENABLE([tests],
        [AC_HELP_STRING([--enable-tests],
                [enable libgpiod tests [default=no]])],
-       [
-               if test "x$enableval" = xyes
-               then
-                       with_tests=true
-               else
-                       with_tests=false
-               fi
-       ],
+       [if test "x$enableval" = xyes; then with_tests=true; fi],
        [with_tests=false])
 AM_CONDITIONAL([WITH_TESTS], [test "x$with_tests" = xtrue])
 
@@ -142,14 +128,7 @@ fi
 AC_ARG_ENABLE([bindings-cxx],
        [AC_HELP_STRING([--enable-bindings-cxx],
                [enable C++ bindings [default=no]])],
-       [
-               if test "x$enableval" = xyes
-               then
-                       with_bindings_cxx=true
-               else
-                       with_bindings_cxx=false
-               fi
-       ],
+       [if test "x$enableval" = xyes; then with_bindings_cxx=true; fi],
        [with_bindings_cxx=false])
 AM_CONDITIONAL([WITH_BINDINGS_CXX], [test "x$with_bindings_cxx" = xtrue])
 
@@ -163,14 +142,7 @@ fi
 AC_ARG_ENABLE([bindings-python],
        [AC_HELP_STRING([--enable-bindings-python],
                [enable python3 bindings [default=no]])],
-       [
-               if test "x$enableval" = xyes
-               then
-                       with_bindings_python=true
-               else
-                       with_bindings_python=false
-               fi
-       ],
+       [if test "x$enableval" = xyes; then with_bindings_python=true; fi],
        [with_bindings_python=false])
 AM_CONDITIONAL([WITH_BINDINGS_PYTHON], [test "x$with_bindings_python" = xtrue])