From e606694ba1b338887fddc07675ef7f28185e29ce Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Thu, 7 Apr 2022 06:23:08 +0300 Subject: [PATCH 40/40] configure.ac: Replace "else if" with "elif" See osdn #44288 Signed-off-by: Marko Lindqvist --- configure.ac | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/configure.ac b/configure.ac index 2d3662b162..04f2be6b33 100644 --- a/configure.ac +++ b/configure.ac @@ -179,20 +179,19 @@ for mp in $(echo $fc_mp | $SED 's/,/ /g') ; do modinst=auto elif test "x$mp" = "xall" ; then modinst=all - else if test "x$mp" = "xgtk3" || - test "x$mp" = "xgtk3.0" || - test "x$mp" = "xgtk30" || - test "x$mp" = "xgtk-3.0" ; then - req_fcmp_gtk3=yes - elif test "x$mp" = "xgtk4" ; then - req_fcmp_gtk4=yes - elif test "x$mp" = "xqt" ; then - req_fcmp_qt=yes - elif test "x$mp" = "xcli" ; then - req_fcmp_cli=yes - elif test "x$mp" != "xyes" ; then - AC_MSG_ERROR([bad value ${mp} for --enable-fcmp]) - fi + elif test "x$mp" = "xgtk3" || + test "x$mp" = "xgtk3.0" || + test "x$mp" = "xgtk30" || + test "x$mp" = "xgtk-3.0" ; then + req_fcmp_gtk3=yes + elif test "x$mp" = "xgtk4" ; then + req_fcmp_gtk4=yes + elif test "x$mp" = "xqt" ; then + req_fcmp_qt=yes + elif test "x$mp" = "xcli" ; then + req_fcmp_cli=yes + elif test "x$mp" != "xyes" ; then + AC_MSG_ERROR([bad value ${mp} for --enable-fcmp]) fi done -- 2.35.1