[vlc-commits] [Git][videolan/vlc][master] configure: remove bash-isms

Steve Lhomme (@robUx4) gitlab at videolan.org
Fri Apr 17 08:36:40 UTC 2026



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
0fa128da by Marvin Scholz at 2026-04-17T07:46:04+00:00
configure: remove bash-isms

The POSIX test utility expects a singular = for string equality
comparisons.

Fix #29755

- - - - -


1 changed file:

- configure.ac


Changes:

=====================================
configure.ac
=====================================
@@ -2874,7 +2874,7 @@ PKG_WITH_MODULES([FAAD],[faad2],
                    ],[], [$LIBM])
     ])
     AS_IF([test "${found_faad}" != "yes"],
-        AS_IF([test "${enable_faad}" == "yes"],
+        AS_IF([test "${enable_faad}" = "yes"],
             AC_MSG_ERROR([${FAAD_PKG_ERRORS}.]),
             AC_MSG_WARN([${FAAD_PKG_ERRORS}.]))
     )
@@ -4095,7 +4095,7 @@ AS_IF([test "${enable_qt}" != "no"], [
   AC_MSG_NOTICE([using ${QT_PATHS}])
 
   AC_CHECK_PROGS(PYTHON3, [python3], [no])
-  AS_IF([test "$PYTHON3" == "no"], [
+  AS_IF([test "$PYTHON3" = "no"], [
     AC_MSG_WARN([python is required to detect Qt libraries/flags])
     have_qt="no"
   ],[



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/0fa128daf29766380ff7fc701ee696804511eebb

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/0fa128daf29766380ff7fc701ee696804511eebb
You're receiving this email because of your account on code.videolan.org.




More information about the vlc-commits mailing list