summaryrefslogtreecommitdiffstats
path: root/configure
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
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')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 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