diff options
author | Jim Meyering <meyering@iou.iou> | 2008-12-30 19:16:08 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-01-01 02:15:07 +0100 |
commit | 7fc5292a291dab4a1b5bf5370de1e083003dd18b (patch) | |
tree | 419f9dc905fa4297761f0118520ca0a9e0cbc9e8 /gl/m4 | |
parent | cf5616a0aaa6f357b5d74e495dddcc0d8dac100c (diff) | |
download | coreutils-7fc5292a291dab4a1b5bf5370de1e083003dd18b.tar.xz |
improve M4 quoting
* configure.ac: Add quotes.
* gl/m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
* m4/boottime.m4 (GNULIB_BOOT_TIME): Likewise.
* m4/check-decl.m4 (gl_CHECK_DECLS): Likewise.
* m4/gmp.m4 (cu_GMP): Likewise.
* m4/jm-macros.m4 (coreutils_MACROS, gl_CHECK_ALL_HEADERS): Likewise.
(gl_CHECK_ALL_TYPES): Likewise.
* m4/lib-check.m4 (cu_LIB_CHECK): Likewise.
* m4/stat-prog.m4 (cu_PREREQ_STAT_PROG): Likewise.
FYI, I first ran this command:
git ls-files | grep -E '\.(m4|ac)$' | xargs perl -pi \
-e 's/(AC_[A-Z_]+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
-e 's/(AC_[A-Z_]+\(\[[^,]+?\], )([^,[()]+?)([,)])/$1\[$2]$3/g;' \
-e 's/(AC_[A-Z_]+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g'
Then I updated serial numbers and copyright dates manually.
Also, I manually added two pairs of quotes in boottime.m4.
Diffstat (limited to 'gl/m4')
-rw-r--r-- | gl/m4/mgetgroups.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gl/m4/mgetgroups.m4 b/gl/m4/mgetgroups.m4 index da557311b..f70f5b953 100644 --- a/gl/m4/mgetgroups.m4 +++ b/gl/m4/mgetgroups.m4 @@ -1,4 +1,4 @@ -#serial 2 +#serial 3 dnl Copyright (C) 2007-2008 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -6,6 +6,6 @@ dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_MGETGROUPS], [ - AC_CHECK_FUNCS(getgrouplist) + AC_CHECK_FUNCS([getgrouplist]) AC_LIBOBJ([mgetgroups]) ]) |