blob: 1fe483889e7a6ba3f8c82c6a5d4dd45cecacf1bd (
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
|
$NetBSD: patch-configure,v 1.2 2021/04/22 12:03:39 adam Exp $
Fix == in configure script.
--- configure.orig 2020-11-01 13:53:55.000000000 +0000
+++ configure
@@ -20654,7 +20654,7 @@ else
HAVE_CXX11_FALSE=
fi
- if test "x$with_int" == "ximath-32"; then
+ if test "x$with_int" = "ximath-32"; then
SMALL_INT_OPT_TRUE=
SMALL_INT_OPT_FALSE='#'
else
@@ -20662,7 +20662,7 @@ else
SMALL_INT_OPT_FALSE=
fi
-if test "x$with_int" == "ximath-32"; then :
+if test "x$with_int" = "ximath-32"; then :
$as_echo "#define USE_SMALL_INT_OPT /**/" >>confdefs.h
|