diff options
author | Art Haas <ahaas@impactweather.com> | 2012-08-26 12:20:01 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2012-08-26 12:20:01 +0000 |
commit | 14fbeb6cf196102bea8cc203559b7172678dece0 (patch) | |
tree | 7dc42d1d634e75c16818fed68fcbeec734700e3d | |
parent | 645acb6b9bf69c3a528f1b0d7f410b7156e0d156 (diff) | |
download | gcc-14fbeb6cf196102bea8cc203559b7172678dece0.zip gcc-14fbeb6cf196102bea8cc203559b7172678dece0.tar.gz gcc-14fbeb6cf196102bea8cc203559b7172678dece0.tar.bz2 |
cloog.m4 (CLOOG_INIT_FLAGS): Use = instead of == in test.
* cloog.m4 (CLOOG_INIT_FLAGS): Use = instead of == in test.
* configure: Regenerate.
From-SVN: r190684
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | config/ChangeLog | 4 | ||||
-rw-r--r-- | config/cloog.m4 | 2 | ||||
-rwxr-xr-x | configure | 2 |
4 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2012-08-26 Art Haas <ahaas@impactweather.com> + + * configure: Regenerate. + 2012-08-25 Křištof Želechovski <giecrilj@stegny.2a.pl> * INSTALL/README: Also refer to the online installation diff --git a/config/ChangeLog b/config/ChangeLog index 3b58790..8b36c33 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,7 @@ +2012-08-26 Art Haas <ahaas@impactweather.com> + + * cloog.m4 (CLOOG_INIT_FLAGS): Use = instead of == in test. + 2012-07-04 Tristan Gingold <gingold@adacore.com> * isl.m4 (ISL_CHECK_VERSION): Set to yes if cross-compiling. diff --git a/config/cloog.m4 b/config/cloog.m4 index 270cf8f..5193f4e 100644 --- a/config/cloog.m4 +++ b/config/cloog.m4 @@ -65,7 +65,7 @@ AC_DEFUN([CLOOG_INIT_FLAGS], fi dnl If no --with-cloog flag was specified and there is in-tree ClooG dnl source, set up flags to use that. - if test "x${clooginc}" == x && test "x${clooglibs}" == x \ + if test "x${clooginc}" = x && test "x${clooglibs}" = x \ && test -d ${srcdir}/cloog; then clooglibs='-L$$r/$(HOST_SUBDIR)/cloog/'"$lt_cv_objdir"' ' clooginc='-I$$r/$(HOST_SUBDIR)/cloog/include -I$$s/cloog/include -I'${srcdir}'/cloog/include ' @@ -5796,7 +5796,7 @@ fi if test "x${with_cloog_lib}" != x; then clooglibs="-L$with_cloog_lib" fi - if test "x${clooginc}" == x && test "x${clooglibs}" == x \ + if test "x${clooginc}" = x && test "x${clooglibs}" = x \ && test -d ${srcdir}/cloog; then clooglibs='-L$$r/$(HOST_SUBDIR)/cloog/'"$lt_cv_objdir"' ' clooginc='-I$$r/$(HOST_SUBDIR)/cloog/include -I$$s/cloog/include -I'${srcdir}'/cloog/include ' |