mirror of git://gcc.gnu.org/git/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
This commit is contained in:
parent
645acb6b9b
commit
14fbeb6cf1
|
|
@ -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>
|
2012-08-25 Křištof Želechovski <giecrilj@stegny.2a.pl>
|
||||||
|
|
||||||
* INSTALL/README: Also refer to the online installation
|
* INSTALL/README: Also refer to the online installation
|
||||||
|
|
|
||||||
|
|
@ -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>
|
2012-07-04 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
* isl.m4 (ISL_CHECK_VERSION): Set to yes if cross-compiling.
|
* isl.m4 (ISL_CHECK_VERSION): Set to yes if cross-compiling.
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@ AC_DEFUN([CLOOG_INIT_FLAGS],
|
||||||
fi
|
fi
|
||||||
dnl If no --with-cloog flag was specified and there is in-tree ClooG
|
dnl If no --with-cloog flag was specified and there is in-tree ClooG
|
||||||
dnl source, set up flags to use that.
|
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
|
&& test -d ${srcdir}/cloog; then
|
||||||
clooglibs='-L$$r/$(HOST_SUBDIR)/cloog/'"$lt_cv_objdir"' '
|
clooglibs='-L$$r/$(HOST_SUBDIR)/cloog/'"$lt_cv_objdir"' '
|
||||||
clooginc='-I$$r/$(HOST_SUBDIR)/cloog/include -I$$s/cloog/include -I'${srcdir}'/cloog/include '
|
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
|
if test "x${with_cloog_lib}" != x; then
|
||||||
clooglibs="-L$with_cloog_lib"
|
clooglibs="-L$with_cloog_lib"
|
||||||
fi
|
fi
|
||||||
if test "x${clooginc}" == x && test "x${clooglibs}" == x \
|
if test "x${clooginc}" = x && test "x${clooglibs}" = x \
|
||||||
&& test -d ${srcdir}/cloog; then
|
&& test -d ${srcdir}/cloog; then
|
||||||
clooglibs='-L$$r/$(HOST_SUBDIR)/cloog/'"$lt_cv_objdir"' '
|
clooglibs='-L$$r/$(HOST_SUBDIR)/cloog/'"$lt_cv_objdir"' '
|
||||||
clooginc='-I$$r/$(HOST_SUBDIR)/cloog/include -I$$s/cloog/include -I'${srcdir}'/cloog/include '
|
clooginc='-I$$r/$(HOST_SUBDIR)/cloog/include -I$$s/cloog/include -I'${srcdir}'/cloog/include '
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue