summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2011-07-05 16:29:16 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2011-07-05 16:29:16 (GMT)
commit3827cdb997551c923f1c8ce2df430e374c1d8182 (patch)
tree7cbd6bc99e868967ae0b818118d94ce3fe2cd26e /configure.in
parentdfc0da212ea31dcac5cae5f8036460f75a718009 (diff)
downloadhdf5-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.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index cac6d92..d7fe9ae 100644
--- a/configure.in
+++ b/configure.in
@@ -1189,7 +1189,7 @@ case "X-$enable_production" in
*)
enable_production="user-defined"
AC_MSG_RESULT([user-defined])
- CONFIG_MODE="$X-enableval"
+ CONFIG_MODE="$enableval"
;;
esac