diff options
author | Jim Meyering <jim@meyering.net> | 2003-04-22 08:22:22 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-04-22 08:22:22 +0000 |
commit | d446eecbf518e7843475f3d23100154432c48c3f (patch) | |
tree | b5557887d42cd62fb3de888f8d04db5b9719c391 /m4 | |
parent | 4247ffb57cf3a292300b6705e5f53d7422448faf (diff) | |
download | coreutils-d446eecbf518e7843475f3d23100154432c48c3f.tar.xz |
Change an occurrence of [ \t] to [\t ].
Diffstat (limited to 'm4')
-rw-r--r-- | m4/gettext.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/gettext.m4 b/m4/gettext.m4 index 5c545ef4f..877e1e42d 100644 --- a/m4/gettext.m4 +++ b/m4/gettext.m4 @@ -415,7 +415,7 @@ AC_DEFUN([AM_PO_SUBDIRS], if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" - cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" + cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" # ALL_LINGUAS, POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. |