summaryrefslogtreecommitdiff
path: root/build_posix/aclocal
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2013-02-21 08:14:16 -0500
committerKeith Bostic <keith@wiredtiger.com>2013-02-21 08:14:16 -0500
commit4226736f8f8e396778b1e9a00fbdfc54fbcc085f (patch)
tree99f1f4ac16019bb91ee56b72988221108524b1c0 /build_posix/aclocal
parentb763a36d8af74d256466c60e05bfd6865b402661 (diff)
downloadmongo-4226736f8f8e396778b1e9a00fbdfc54fbcc085f.tar.gz
AC_HELP_STRING is obsolete, replace with AS_HELP_STRING.
Diffstat (limited to 'build_posix/aclocal')
-rw-r--r--build_posix/aclocal/options.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/build_posix/aclocal/options.m4 b/build_posix/aclocal/options.m4
index feb7dc5f5f1..6856cdd0769 100644
--- a/build_posix/aclocal/options.m4
+++ b/build_posix/aclocal/options.m4
@@ -48,7 +48,7 @@ AC_MSG_RESULT($wt_cv_enable_diagnostic)
AC_MSG_CHECKING(if --enable-java option specified)
AC_ARG_ENABLE(java,
- [AC_HELP_STRING([--enable-java],
+ [AS_HELP_STRING([--enable-java],
[Configure the Java API.])], r=$enableval, r=no)
case "$r" in
no) wt_cv_enable_java=no;;
@@ -62,7 +62,7 @@ AM_CONDITIONAL([JAVA], [test x$wt_cv_enable_java = xyes])
AC_MSG_CHECKING(if --enable-python option specified)
AC_ARG_ENABLE(python,
- [AC_HELP_STRING([--enable-python],
+ [AS_HELP_STRING([--enable-python],
[Configure the python API.])], r=$enableval, r=no)
case "$r" in
no) wt_cv_enable_python=no;;