aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>2009-10-23 09:24:25 +0000
committerRainer Orth <ro@gcc.gnu.org>2009-10-23 09:24:25 +0000
commit17e72e5d2226f0853033c033c2132bec15a63a8a (patch)
tree056177bb7d00907b88c2c5c230be5a09cebcead2
parent7da774079b710297d3d630546e8b710bee3f2384 (diff)
downloadgcc-17e72e5d2226f0853033c033c2132bec15a63a8a.zip
gcc-17e72e5d2226f0853033c033c2132bec15a63a8a.tar.gz
gcc-17e72e5d2226f0853033c033c2132bec15a63a8a.tar.bz2
configure.ac (CLooG test): Use = with test.
* configure.ac (CLooG test): Use = with test. * configure: Regenerate. From-SVN: r153490
-rw-r--r--ChangeLog5
-rwxr-xr-xconfigure2
-rw-r--r--configure.ac2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 00cd7e3..d8cbbd8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-10-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
+
+ * configure.ac (CLooG test): Use = with test.
+ * configure: Regenerate.
+
2009-10-22 Richard Guenther <rguenther@suse.de>
* configure.ac: Do not set LIBS for ppl/cloog checks. Disable
diff --git a/configure b/configure
index 7ceaafc..db105a5 100755
--- a/configure
+++ b/configure
@@ -5857,7 +5857,7 @@ if test "${with_cloog_lib+set}" = set; then :
fi
-if test "x$with_ppl" == "xno"; then
+if test "x$with_ppl" = "xno"; then
with_cloog=no
fi
diff --git a/configure.ac b/configure.ac
index 34c3495..7fdf357 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1572,7 +1572,7 @@ AC_ARG_WITH(cloog, [ --with-cloog=PATH Specify prefix directory for the i
AC_ARG_WITH(cloog_include, [ --with-cloog-include=PATH Specify directory for installed CLooG include files])
AC_ARG_WITH(cloog_lib, [ --with-cloog-lib=PATH Specify the directory for the installed CLooG library])
-if test "x$with_ppl" == "xno"; then
+if test "x$with_ppl" = "xno"; then
with_cloog=no
fi