summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2007-07-12 20:58:53 +0200
committerJim Meyering <jim@meyering.net>2007-07-12 20:58:53 +0200
commitcee14cc42f91f1245b18d3e2e9968e841ff85e50 (patch)
treef1c66ebb2c54af6c4bbf764e670ecac784848954 /m4
parent13b2b9c3428f28802dcc98b29e4f6f96771326b8 (diff)
downloadcoreutils-cee14cc42f91f1245b18d3e2e9968e841ff85e50.tar.xz
Expand default-no-install prog list in ./configure --help output,
and fix some []-quoting bugs in sed expressions. * configure.ac: Hard-code the list, "arch,su" here as well as in src/Makefile.am, and ensure the two stay in sync. * m4/include-exclude-prog.m4 (gl_INCLUDE_EXCLUDE_PROG): Use $2, rather than the nearly-equivalent shell variable. Karel Zak reported that ./configure --help's output included the literal string, $gl_no_install_progs_default.
Diffstat (limited to 'm4')
-rw-r--r--m4/include-exclude-prog.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/include-exclude-prog.m4 b/m4/include-exclude-prog.m4
index 387386dfe..77627ea0e 100644
--- a/m4/include-exclude-prog.m4
+++ b/m4/include-exclude-prog.m4
@@ -43,8 +43,8 @@ AC_DEFUN([gl_INCLUDE_EXCLUDE_PROG],
# use --enable-no-install-program=A,B
AC_ARG_ENABLE([no-install-program],
[AS_HELP_STRING([--enable-no-install-program=PROG_LIST],
- [do NOT install the programs in PROG_LIST (comma-separated,
- default: $gl_no_install_progs_default)])],
+ [do NOT install the programs in PROG_LIST
+ (comma-separated, default: $2)])],
[gl_no_install_prog=$enableval],
[gl_no_install_prog=]
)