mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
[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:
parent
cd6c3fdf9d
commit
084c4ea9ee
2
configure
vendored
2
configure
vendored
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user