summaryrefslogtreecommitdiff
path: root/sci-libs/getdata/files/getdata-0.11.0-bashisms-configure.patch
blob: df3915f7b849069001e69ba43b41a77c9fefea7d (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
--- a/configure.ac
+++ b/configure.ac
@@ -571,7 +571,7 @@ if test "x${use_modules}" != "xno"; then
   LDFLAGS=$saved_ldflags
   LIBS=$saved_libs
 
-  if test "x$have_ltdl" == "xno"; then
+  if test "x$have_ltdl" = "xno"; then
     AC_MSG_ERROR([libltdl is required to build modules.  Please either specify the location of the libltdl library using --with-ltdl=PREFIX or else disable the building of modules by using --disable-modules])
   fi
 
@@ -601,18 +601,18 @@ AC_SUBST([LIBLTDL])
 AC_SUBST([LTDLINCL])
 
 dnl check if we found a C++ compiler
-if test "x$CXX" == "x"; then
+if test "x$CXX" = "x"; then
   make_cxxbindings=no
 fi
 
 dnl check if we found a Fortran 77 compiler
-if test "x$F77" == "x"; then
+if test "x$F77" = "x"; then
   make_f77bindings=no
   make_f95bindings=no
 fi
 
 dnl check if we found a free-form Fortran compiler
-if test "x$FC" == "x"; then
+if test "x$FC" = "x"; then
   make_f95bindings=no
 fi
 
@@ -641,7 +641,7 @@ fi
 dnl F77 stuff
 if test "x$make_f77bindings" != "xno"; then
   AC_F77_WRAPPERS
-  if test "x$ac_cv_f77_mangling" == "xunknown"; then
+  if test "x$ac_cv_f77_mangling" = "xunknown"; then
     make_f77bindings=no
     make_f95bindings=no
   fi
@@ -1065,7 +1065,7 @@ else
   AC_MSG_RESULT([$use_slim])
   AC_MSG_CHECKING([for zzip support])
   AC_MSG_RESULT([$use_zzip])
-  if test "$use_slim$use_zzip" == "yesyes"; then
+  if test "$use_slim$use_zzip" = "yesyes"; then
     if test $zzslim_override = "yes"; then
       AC_MSG_CHECKING([for zzslim support])
       AC_MSG_RESULT([yes (forced)])
@@ -1200,11 +1200,11 @@ AC_CONFIG_FILES([test/Makefile])
 AC_CONFIG_FILES([util/Makefile])
 
 dnl Automake conditionals
-AM_CONDITIONAL(GETDATA_DEBUG, [test "x$enable_debug" == "xyes"])
+AM_CONDITIONAL(GETDATA_DEBUG, [test "x$enable_debug" = "xyes"])
 AM_CONDITIONAL(HAVE_SED, [ test "x${SED}" != 'x' ])
 AM_CONDITIONAL(INTEL_F77_COMPILER,
-               [test "x$gd_cv_f77_compiler_intel" == "xyes"])
-AM_CONDITIONAL(INTEL_FC_COMPILER, [test "x$gd_cv_fc_compiler_intel" == "xyes"])
+               [test "x$gd_cv_f77_compiler_intel" = "xyes"])
+AM_CONDITIONAL(INTEL_FC_COMPILER, [test "x$gd_cv_fc_compiler_intel" = "xyes"])
 AM_CONDITIONAL(INCLUDE_LEGACY_API, [test "x$include_legacy_api" != "xno"])
 AM_CONDITIONAL(MAKE_CXXBINDINGS, [test "x$make_cxxbindings" = "xyes"])
 AM_CONDITIONAL(MAKE_F77BINDINGS, [test "x$make_f77bindings" != "xno"])