blob: b092337a6181a668902974d7da8dc75f6dad6743 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-configure,v 1.2 2020/04/11 05:05:40 gutteridge Exp $
Fix unportable test(1) construct.
--- configure.orig 2014-04-24 09:18:18.000000000 +0000
+++ configure
@@ -16298,7 +16298,7 @@ else
fi
-if test x"$GST_FOUND" == x"yes"; then
+if test x"$GST_FOUND" = x"yes"; then
# minimum supported version of pkg-config
|