diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2011-07-05 16:23:10 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2011-07-05 16:23:10 (GMT) |
commit | 77108909d0498ac5667712c919611cbbdc268585 (patch) | |
tree | aa9806e107035c6272f186d68ccd6a8bd7f9c476 /configure.in | |
parent | 06880aeb4d098504b36160b532188a048a2455a1 (diff) | |
download | hdf5-77108909d0498ac5667712c919611cbbdc268585.zip hdf5-77108909d0498ac5667712c919611cbbdc268585.tar.gz hdf5-77108909d0498ac5667712c919611cbbdc268585.tar.bz2 |
[svn-r21066] Purpose:
Fix HDFFV-7522
"--enable-production=xxx will produce incorrect configure summary"
Description:
Fixed a typo in configure.in that resulted in "-enableval" being
displayed by the configure summary (and set in the CONFIG_MODE
makefile variable) if the production mode was set to anything other
than yes, no, or profile. The summary and CONFIG_MODE variable will
now be set to the value specified by the user.
Tested:
jam, h5committest
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index bbeb698..1ba585b 100644 --- a/configure.in +++ b/configure.in @@ -1178,7 +1178,7 @@ case "X-$enable_production" in *) enable_production="user-defined" AC_MSG_RESULT([user-defined]) - CONFIG_MODE="$X-enableval" + CONFIG_MODE="$enableval" ;; esac |