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.ac | |
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.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index c37a1c4..b4be127 100644 --- a/configure.ac +++ b/configure.ac @@ -33,8 +33,8 @@ AC_INIT([HDF5], [1.9.227], [help@hdfgroup.org]) ## Requirement #1: Check if Perl is installed. ## AC_SUBST([PERL]) PERL="" -AC_CHECK_PROG([PERL], [perl],, [$PATH]) -if test "x$PERL" = "xfalse"; then +AC_CHECK_PROG([PERL], [perl], true, false, [$PATH]) +if test "x$PERL" != "xtrue"; then AC_MSG_ERROR([*** Perl is required for installing HDF5, but Perl could not be found!]) fi |