diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-01-25 19:47:36 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-01-25 19:47:36 +0000 |
commit | f9c26062b6910114b2590ca1095b74732d4de319 (patch) | |
tree | f0b865be1687e4a9c82a04e0937540614b4f15ed /config/cloog.m4 | |
parent | 114227c38c5fe643aedf3473bcafc9ebccadad39 (diff) | |
download | gcc-f9c26062b6910114b2590ca1095b74732d4de319.tar.gz |
* config/cloog.m4 (CLOOG_REQUESTED): Use $2 if --without-cloog.
* configure.ac: If with_ppl is no, move setting with_cloog=no
after CLOOG_REQUESTED check.
* configure: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@169249 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config/cloog.m4')
-rw-r--r-- | config/cloog.m4 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/cloog.m4 b/config/cloog.m4 index e1eb9e83601..ec8b46d244e 100644 --- a/config/cloog.m4 +++ b/config/cloog.m4 @@ -88,7 +88,9 @@ AC_DEFUN([CLOOG_REQUESTED], [ AC_REQUIRE([CLOOG_INIT_FLAGS]) - if test "x${with_cloog}" != x \ + if test "x${with_cloog}" = xno; then + $2 + elif test "x${with_cloog}" != x \ || test "x${with_cloog_include}" != x \ || test "x${with_cloog_lib}" != x ; then $1 |