diff options
author | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-02 15:18:47 +0000 |
---|---|---|
committer | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-02 15:18:47 +0000 |
commit | 7aa8604d6bcfc9a8523fd769ec8a25e7d8cfba68 (patch) | |
tree | feedfd1ce92d7ccae59e04a650612869423e76ff /configure.ac | |
parent | 3b3b2c44684d119678dec3db14da6dfcb9158086 (diff) | |
download | gcc-7aa8604d6bcfc9a8523fd769ec8a25e7d8cfba68.tar.gz |
Fix configure problem.
2011-03-02 Sebastian Pop <sebastian.pop@amd.com>
* configure.ac: Adjust test of with_ppl.
* configure: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170618 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 4fb29c03686..233ce0a768e 100644 --- a/configure.ac +++ b/configure.ac @@ -1675,7 +1675,7 @@ if test x"$with_ppl$with_ppl_include$with_ppl_lib" = x && test -d ${srcdir}/ppl; with_ppl=yes fi -if test "x$with_ppl" = xyes; then +if test "x$with_ppl" != xno; then if test "x$pwllib" = x; then saved_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $ppllibs" |