diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2015-08-14 22:21:11 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2015-08-14 22:21:11 (GMT) |
commit | b79070ac8d71114066669be2363a93972b56c112 (patch) | |
tree | 353a2d641f5894b8dd89f2c245bceb751a927bd5 /configure | |
parent | d3e931c772a1fea1d8d0676dd6dd3fe95b000d9e (diff) | |
download | hdf5-b79070ac8d71114066669be2363a93972b56c112.zip hdf5-b79070ac8d71114066669be2363a93972b56c112.tar.gz hdf5-b79070ac8d71114066669be2363a93972b56c112.tar.bz2 |
[svn-r27509] Fixed check for perl: tested--h5committest
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3025,7 +3025,7 @@ do test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_PERL="" + ac_cv_prog_PERL="true" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi @@ -3033,7 +3033,7 @@ done done IFS=$as_save_IFS - test -z "$ac_cv_prog_PERL" && ac_cv_prog_PERL="$PATH" + test -z "$ac_cv_prog_PERL" && ac_cv_prog_PERL="false" fi fi PERL=$ac_cv_prog_PERL @@ -3046,7 +3046,7 @@ $as_echo "no" >&6; } fi -if test "x$PERL" = "xfalse"; then +if test "x$PERL" != "xtrue"; then as_fn_error $? "*** Perl is required for installing HDF5, but Perl could not be found!" "$LINENO" 5 fi |