From: Art Haas Date: Sun, 26 Aug 2012 12:20:01 +0000 (+0000) Subject: cloog.m4 (CLOOG_INIT_FLAGS): Use = instead of == in test. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=14fbeb6cf196102bea8cc203559b7172678dece0;p=gcc.git 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 --- diff --git a/ChangeLog b/ChangeLog index ebebff74ac8..a17ddb06953 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2012-08-26 Art Haas + + * configure: Regenerate. + 2012-08-25 Křištof Želechovski * INSTALL/README: Also refer to the online installation diff --git a/config/ChangeLog b/config/ChangeLog index 3b58790df99..8b36c33c9ab 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,7 @@ +2012-08-26 Art Haas + + * cloog.m4 (CLOOG_INIT_FLAGS): Use = instead of == in test. + 2012-07-04 Tristan Gingold * isl.m4 (ISL_CHECK_VERSION): Set to yes if cross-compiling. diff --git a/config/cloog.m4 b/config/cloog.m4 index 270cf8f8069..5193f4e45d7 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 ' diff --git a/configure b/configure index fd0e29c1ef6..60e269e00e5 100755 --- a/configure +++ b/configure @@ -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 '