VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Masahiro Yamada <masahiroy@kernel.org> 2021-04-30 10:56:27 +0900 committer: Masahiro Yamada <masahiroy@kernel.org> 2021-05-02 00:43:35 +0900 commit: 77a88274dc1a2cf3a775161d9a3242bc798ee680 parent: 885480b084696331bea61a4f7eba10652999a9c1
Commit Summary:
kbuild: replace LANG=C with LC_ALL=C
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/scripts/tags.sh b/scripts/tags.sh
index fd96734deff1..db8ba411860a 100755
--- a/scripts/tags.sh
+++ b/scripts/tags.sh
@@ -326,5 +326,5 @@ esac
 
 # Remove structure forward declarations.
 if [ -n "$remove_structs" ]; then
-    LANG=C sed -i -e '/^\([a-zA-Z_][a-zA-Z0-9_]*\)\t.*\t\/\^struct \1;.*\$\/;"\tx$/d' $1
+    LC_ALL=C sed -i -e '/^\([a-zA-Z_][a-zA-Z0-9_]*\)\t.*\t\/\^struct \1;.*\$\/;"\tx$/d' $1
 fi