diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2011-07-05 16:29:16 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2011-07-05 16:29:16 (GMT) |
commit | 3827cdb997551c923f1c8ce2df430e374c1d8182 (patch) | |
tree | 7cbd6bc99e868967ae0b818118d94ce3fe2cd26e /configure | |
parent | dfc0da212ea31dcac5cae5f8036460f75a718009 (diff) | |
download | hdf5-3827cdb997551c923f1c8ce2df430e374c1d8182.zip hdf5-3827cdb997551c923f1c8ce2df430e374c1d8182.tar.gz hdf5-3827cdb997551c923f1c8ce2df430e374c1d8182.tar.bz2 |
[svn-r21067] 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')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Id: configure.in 21044 2011-06-28 21:25:10Z mamcgree . +# From configure.in Id: configure.in 21065 2011-07-04 00:39:37Z hdftest . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.68 for HDF5 1.8.8-snap6. # @@ -21688,7 +21688,7 @@ $as_echo "profile" >&6; } enable_production="user-defined" { $as_echo "$as_me:${as_lineno-$LINENO}: result: user-defined" >&5 $as_echo "user-defined" >&6; } - CONFIG_MODE="$X-enableval" + CONFIG_MODE="$enableval" ;; esac |