From 084c4ea9ee459564ee71ca7f57ca97798f0b34a0 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Thu, 7 Mar 2002 15:38:08 -0500 Subject: [svn-r5046] Purpose: Bug Fix Description: Fixed wrong test for the HAVE_PABLO flag. Was testing if it was not a null string when I should have been testing if it was equal to "yes". Solution: Changed test so that it checks if it's equal to "yes" instead of non-null... Platforms tested: Linux --- configure | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 7e598cb..b41f304 100755 --- a/configure +++ b/configure @@ -9655,7 +9655,7 @@ PABLO_MAKE="" PARALLEL_PABLO="" -if test -n "$HAVE_PABLO"; then +if test "$HAVE_PABLO" = "yes"; then PABLO_MAKE="pablo/Makefile" if test -n "$TESTPARALLEL"; then diff --git a/configure.in b/configure.in index 003d9b3..346eb7b 100644 --- a/configure.in +++ b/configure.in @@ -1826,7 +1826,7 @@ PABLO_MAKE="" AC_SUBST(PARALLEL_PABLO) PARALLEL_PABLO="" -if test -n "$HAVE_PABLO"; then +if test "$HAVE_PABLO" = "yes"; then PABLO_MAKE="pablo/Makefile" if test -n "$TESTPARALLEL"; then -- cgit v0.12