From 6d9cc8eb8b8f41213306b6b3d189dfe72e10b60d Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Mon, 17 Jan 2022 07:26:43 +0200 Subject: [PATCH] unicode: fix .gitignore for generated utfdata file Commit f2d356a12874 ("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: f2d356a12874 ("unicode: Add utf8-data module") Signed-off-by: Linus Torvalds --- fs/unicode/.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/unicode/.gitignore b/fs/unicode/.gitignore index 361294571ab0b..51cdf3fb4dd4d 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 -- 2.39.5