aboutsummaryrefslogtreecommitdiff
path: root/aclocal.m4
diff options
context:
space:
mode:
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m45
1 files changed, 3 insertions, 2 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 3492c1e..1e8dde8 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -55,10 +55,11 @@ AC_DEFUN([AM_GCONF_SOURCE_2],
AC_MSG_RESULT([Using $GCONF_SCHEMA_FILE_DIR as install directory for schema files])
AC_ARG_ENABLE(schemas-install,
- [ --disable-schemas-install Disable the schemas installation],
+ AC_HELP_STRING([--disable-schemas-install],
+ [Disable the schemas installation]),
[case ${enableval} in
yes|no) ;;
- *) AC_MSG_ERROR(bad value ${enableval} for --enable-schemas-install) ;;
+ *) AC_MSG_ERROR([bad value ${enableval} for --enable-schemas-install]) ;;
esac])
AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL], [test "$enable_schemas_install" != no])
])
bgstack15