blob: 97bdbebb14dd9bf0f081c55e40f5b737e0af97de (
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
|
$NetBSD: patch-isl_configure,v 1.2 2019/04/18 19:18:02 rillig Exp $
Make test portable
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90144
--- isl/configure.orig 2016-01-14 17:26:10.000000000 +0000
+++ isl/configure
@@ -17561,7 +17561,7 @@ else
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
@@ -17569,7 +17569,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
|