summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-03-07 20:38:08 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-03-07 20:38:08 (GMT)
commit084c4ea9ee459564ee71ca7f57ca97798f0b34a0 (patch)
tree8343246065360919828721de800d85fe41bfc366 /configure.in
parentcd6c3fdf9d89533d471f8bf1978310b385e55c11 (diff)
downloadhdf5-084c4ea9ee459564ee71ca7f57ca97798f0b34a0.zip
hdf5-084c4ea9ee459564ee71ca7f57ca97798f0b34a0.tar.gz
hdf5-084c4ea9ee459564ee71ca7f57ca97798f0b34a0.tar.bz2
[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
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
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