blob: 8d65e7cd5c9fee303cf0dcfaa2906846b2301626 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
From a193e48dd01ad3aef9dd998c1247f649719f0a80 Mon Sep 17 00:00:00 2001
From: Sam James <sam@gentoo.org>
Date: Sun, 1 Aug 2021 07:48:51 +0100
Subject: [PATCH] Drop bashisms from configure.ac
---
configure.ac | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/configure.ac b/configure.ac
index 9ae1292..106ea57 100644
--- a/configure.ac
+++ b/configure.ac
@@ -218,18 +218,18 @@ selected_for_media_art="no (disabled)"
# Choose between backends (GdkPixbuf/Qt/etc)
##################################################################
-if test "x$enable_qt" == "xyes" && test "x$enable_gdkpixbuf" == "xyes"; then
+if test "x$enable_qt" = "xyes" && test "x$enable_gdkpixbuf" = "xyes"; then
AC_MSG_ERROR([Can not enable both Qt and GdkPixbuf backends, please pick one])
fi
if test "x$enable_qt" != "xno" && test "x$enable_gdkpixbuf" != "xyes"; then
- if test "x$with_qt_version" == "xauto" || test "x$with_qt_version" == "x5"; then
+ if test "x$with_qt_version" = "xauto" || test "x$with_qt_version" = "x5"; then
PKG_CHECK_MODULES(QT5,
[Qt5Gui >= $QT5_REQUIRED],
[have_qt5=yes],
[have_qt5=no])
fi
- if test "x$with_qt_version" == "xauto" || test "x$with_qt_version" == "x4"; then
+ if test "x$with_qt_version" = "xauto" || test "x$with_qt_version" = "x4"; then
PKG_CHECK_MODULES(QT4,
[QtGui >= $QT4_REQUIRED],
[have_qt4=yes],
--
2.32.0
|