diff options
author | P. J. McDermott <pjm@nac.net> | 2013-10-22 20:59:20 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-10-22 20:59:20 (EDT) |
commit | cbe92a17d2fad1a77b2ffcd9cfcb1884829dc9cb (patch) | |
tree | 4b118898ca33bbc86747b2ac63ac1c9b43813c68 | |
parent | 62dba57dd4ae7885eae9307a8f18aa434d739628 (diff) |
configure.ac: Fix `local' quoting.
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6e67dd1..78faa9d 100644 --- a/configure.ac +++ b/configure.ac @@ -25,7 +25,8 @@ AM_INIT_AUTOMAKE([gnu check-news dist-bzip2 dist-xz subdir-objects]) AC_ARG_WITH( [sh], - [AS_HELP_STRING([--with-sh], [POSIX-conformant shell with ``local''])], + [AS_HELP_STRING([--with-sh], [POSIX-conformant shell with `local'])], + dnl This `dnl' is needed to workaround Vim syntax highlighting. [ case "${withval}" in 'yes'|'') |