aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pop <sebastian.pop@amd.com>2011-03-02 15:18:47 +0000
committerSebastian Pop <spop@gcc.gnu.org>2011-03-02 15:18:47 +0000
commitf158c8d0ed150a33356f17f9b8a80e1525a98263 (patch)
treefeedfd1ce92d7ccae59e04a650612869423e76ff
parenta7443a2dd6d766cfe829d89b62e3aeb6a490fc50 (diff)
downloadgcc-f158c8d0ed150a33356f17f9b8a80e1525a98263.zip
gcc-f158c8d0ed150a33356f17f9b8a80e1525a98263.tar.gz
gcc-f158c8d0ed150a33356f17f9b8a80e1525a98263.tar.bz2
Fix configure problem.
2011-03-02 Sebastian Pop <sebastian.pop@amd.com> * configure.ac: Adjust test of with_ppl. * configure: Regenerated. From-SVN: r170618
-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 92f4f15..b066896 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-03-02 Sebastian Pop <sebastian.pop@amd.com>
+
+ * configure.ac: Adjust test of with_ppl.
+ * configure: Regenerated.
+
2011-03-02 Kai Tietz <ktietz@redhat.com>
* MAINTAINERS: Adjust my e-mail address.
diff --git a/configure b/configure
index 997282f..5e97d0f 100755
--- a/configure
+++ b/configure
@@ -5723,7 +5723,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"
diff --git a/configure.ac b/configure.ac
index 4fb29c0..233ce0a 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"