From d7f0c2e055b84e68f5cbdc7073b2de926ccf6c17 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Sun, 21 Oct 2018 14:52:11 +0200 Subject: [PATCH] configure.ac: Streamline mention of defaults in --help output a bit --- expat/configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/expat/configure.ac b/expat/configure.ac index acc8eb51..e5b11562 100644 --- a/expat/configure.ac +++ b/expat/configure.ac @@ -123,11 +123,11 @@ AC_ARG_WITH([xmlwf], AM_CONDITIONAL([WITH_XMLWF], [test x${with_xmlwf} = xyes]) AC_ARG_WITH([examples], [ -AS_HELP_STRING([--without-examples], [do not build examples, default build examples])], [], [with_examples=yes]) +AS_HELP_STRING([--without-examples], [do not build examples @<:@default=included@:>@])], [], [with_examples=yes]) AM_CONDITIONAL([WITH_EXAMPLES], [test x${with_examples} = xyes]) AC_ARG_WITH([tests], [ -AS_HELP_STRING([--without-tests], [do not build tests, default build tests])], [], [with_tests=yes]) +AS_HELP_STRING([--without-tests], [do not build tests @<:@default=included@:>@])], [], [with_tests=yes]) AM_CONDITIONAL([WITH_TESTS], [test x${with_tests} = xyes]) AM_CONDITIONAL([MINGW], [echo -- "${host}" | ${FGREP} mingw >/dev/null])