diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-02-27 09:08:18 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-02-27 11:04:38 +0100 |
| commit | 5eb8b4fb69c088170c73e759b8edca1c601649b6 (patch) | |
| tree | 681851e0f9764091e61326834eaf58fa2e7706a4 | |
| parent | 53e93c2da6be64abf3c343942618384f4b8de7da (diff) | |
| download | PROJ-5eb8b4fb69c088170c73e759b8edca1c601649b6.tar.gz PROJ-5eb8b4fb69c088170c73e759b8edca1c601649b6.zip | |
configure.ac: replace '==' by '=' to avoid Bashism (patch by Greg Troxel)
| -rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 1135b4a4..d0aecf75 100644 --- a/configure.ac +++ b/configure.ac @@ -326,7 +326,7 @@ AC_ARG_WITH(external-gtest, AS_HELP_STRING([--with-external-gtest], [Whether to use external Google Test]),,) -if test "x$with_external_gtest" == "xyes" ; then +if test "x$with_external_gtest" = "xyes" ; then AC_MSG_RESULT([using external GTest.]) PKG_CHECK_MODULES([GTEST], [gtest >= 1.8.0]) else @@ -334,7 +334,7 @@ else GTEST_CFLAGS="-I\$(top_srcdir)/test/googletest/include" GTEST_LIBS="\$(top_builddir)/test/googletest/libgtest.la" fi -AM_CONDITIONAL(USE_EXTERNAL_GTEST, [test "x$with_external_gtest" == "xyes"]) +AM_CONDITIONAL(USE_EXTERNAL_GTEST, [test "x$with_external_gtest" = "xyes"]) AC_SUBST(GTEST_CFLAGS,$GTEST_CFLAGS) AC_SUBST(GTEST_LIBS,$GTEST_LIBS) |
