diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2009-10-23 09:24:25 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2009-10-23 09:24:25 +0000 |
commit | 17e72e5d2226f0853033c033c2132bec15a63a8a (patch) | |
tree | 056177bb7d00907b88c2c5c230be5a09cebcead2 | |
parent | 7da774079b710297d3d630546e8b710bee3f2384 (diff) | |
download | gcc-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-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -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 @@ -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 |