diff options
author | Sam James <sam@gentoo.org> | 2022-06-05 12:09:02 -0700 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2022-06-05 12:09:02 -0700 |
commit | 7df596a58cdfa763924487b8c275269de3497304 (patch) | |
tree | 7b2762ba7b12c0ed07d63cd14109305af04f4cf8 /iconvdata/jis0212.c | |
parent | 3c23fa9f44fe88d0851e1344fc37ba60e74cb0fc (diff) | |
download | glibc-7df596a58cdfa763924487b8c275269de3497304.tar.gz glibc-7df596a58cdfa763924487b8c275269de3497304.tar.xz glibc-7df596a58cdfa763924487b8c275269de3497304.zip |
grep: egrep -> grep -E, fgrep -> grep -F
Newer versions of GNU grep (after grep 3.7, not inclusive) will warn on 'egrep' and 'fgrep' invocations. Convert usages within the tree to their expanded non-aliased counterparts to avoid irritating warnings during ./configure and the test suite. Signed-off-by: Sam James <sam@gentoo.org> Reviewed-by: Fangrui Song <maskray@google.com>
Diffstat (limited to 'iconvdata/jis0212.c')
-rw-r--r-- | iconvdata/jis0212.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/iconvdata/jis0212.c b/iconvdata/jis0212.c index 5799cd7b60..5ca559a76f 100644 --- a/iconvdata/jis0212.c +++ b/iconvdata/jis0212.c @@ -25,7 +25,7 @@ char in a table resulting in an index to a table with the UCS. The following command can be used to generate the table: - egrep '^0x[[:xdigit:]][[:xdigit:]][[:xdigit:]][[:xdigit:]]' \ + grep -E '^0x[[:xdigit:]][[:xdigit:]][[:xdigit:]][[:xdigit:]]' \ .../eastasia/jis/jis0212.txt | perl tab.pl where tab.pl is @@ -71,7 +71,7 @@ const struct jisx0212_idx __jisx0212_to_ucs_idx[] = /* The table which the UCS values indexed by the table above can be generated using the following code: - egrep '^0x[[:xdigit:]][[:xdigit:]][[:xdigit:]][[:xdigit:]]' \ + grep -E '^0x[[:xdigit:]][[:xdigit:]][[:xdigit:]][[:xdigit:]]' \ .../eastasia/jis/jis0212.txt | perl tab.pl where tab.pl is: @@ -876,7 +876,7 @@ const uint16_t __jisx0212_to_ucs[] = use again a two-step mapping table. The index table can be computed using - egrep '^0x[[:xdigit:]][[:xdigit:]][[:xdigit:]][[:xdigit:]]' \ + grep -E '^0x[[:xdigit:]][[:xdigit:]][[:xdigit:]][[:xdigit:]]' \ ../eastasia/jis/jis0212.txt | awk '{ print $2, $1 }' | sort -u | perl tab.pl @@ -1657,7 +1657,7 @@ const struct jisx0212_idx __jisx0212_from_ucs_idx[] = /* The values corresponding to the table can be computed using - egrep '^0x[[:xdigit:]][[:xdigit:]][[:xdigit:]][[:xdigit:]]' \ + grep -E '^0x[[:xdigit:]][[:xdigit:]][[:xdigit:]][[:xdigit:]]' \ .../eastasia/jis/jis0212.txt | awk '{ print $2, $1 }' | sort -u | perl tab.pl |