diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-03-07 20:38:08 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-03-07 20:38:08 (GMT) |
commit | 084c4ea9ee459564ee71ca7f57ca97798f0b34a0 (patch) | |
tree | 8343246065360919828721de800d85fe41bfc366 /configure | |
parent | cd6c3fdf9d89533d471f8bf1978310b385e55c11 (diff) | |
download | hdf5-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-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |