blob: a3af40b652ab60331f84245ec1998d9358d7bff5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-configure,v 1.4 2015/09/08 19:40:59 wiz Exp $
Fix unportable test(1) operator.
--- configure.orig 2015-06-18 23:43:37.000000000 +0000
+++ configure
@@ -17533,7 +17533,7 @@ else
fi
-if test x"$enable_werror" == "xyes"; then :
+if test x"$enable_werror" = "xyes"; then :
CXXFLAGS="$CXXFLAGS -Werror"
|