diff options
author | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-08-26 12:20:01 +0000 |
---|---|---|
committer | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-08-26 12:20:01 +0000 |
commit | 29a97e55d1e36ef73c9e15f80ac29d0b81ec9b3c (patch) | |
tree | 7dc42d1d634e75c16818fed68fcbeec734700e3d /config/cloog.m4 | |
parent | 6430a5fe29b3426d1f3c5ab964edc6926f7dfbdc (diff) | |
download | gcc-29a97e55d1e36ef73c9e15f80ac29d0b81ec9b3c.tar.gz |
* cloog.m4 (CLOOG_INIT_FLAGS): Use = instead of == in test.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@190684 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config/cloog.m4')
-rw-r--r-- | config/cloog.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
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 ' |