diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-01-17 07:26:43 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-01-17 07:26:43 +0200 |
commit | 98f2345773f9ac739350230a85f9a7f7b1fe21a6 (patch) | |
tree | 158bf9ab7b2b24a1e49af56cf6f2a061037380a1 | |
parent | 35ce8ae9ae2e471f92759f9d6880eab42cc1c3b6 (diff) | |
download | linux-next-98f2345773f9ac739350230a85f9a7f7b1fe21a6.tar.gz |
unicode: fix .gitignore for generated utfdata file
Commit 2b3d04787012 ("unicode: Add utf8-data module") changed the
generated utf8data file from 'utf8data.h' to 'utf8data.c', but didn't
change the comments or the .gitignore to match.
The comments should be updated too, but at least they don't cause any
visible breakage. But the gitignore file needs changing to avoid git
complaining about untracked files.
Fixes: 2b3d04787012 ("unicode: Add utf8-data module")
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | fs/unicode/.gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/unicode/.gitignore b/fs/unicode/.gitignore index 361294571ab0..51cdf3fb4dd4 100644 --- a/fs/unicode/.gitignore +++ b/fs/unicode/.gitignore @@ -1,3 +1,3 @@ # SPDX-License-Identifier: GPL-2.0-only /mkutf8data -/utf8data.h +/utf8data.c |