[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
This commit is contained in:
Bill Wendling 2002-03-07 15:38:08 -05:00
parent cd6c3fdf9d
commit 084c4ea9ee
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -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

View File

@ -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