summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWei Yang <richard.weiyang@gmail.com>2023-12-29 03:06:52 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-01-04 17:01:15 +0100
commit0aedf7a2dc5d23211399813bdfce5a46e836d5d7 (patch)
tree5333600a3378b8eed37158af788fb79541b70a27 /scripts
parentf9fefa985d2e96db81954ae3b1feb09d69357f28 (diff)
scripts/tags.sh: add local annotation
Commit 'f81b1be40c44 tags: include headers before source files' introduce two local variables. Let's add local annotation to make it obvious. Signed-off-by: Wei Yang <richard.weiyang@gmail.com> Link: https://lore.kernel.org/r/20231229030654.17474-2-richard.weiyang@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/tags.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/tags.sh b/scripts/tags.sh
index be7970b8b88a..c088bf4f9aa1 100755
--- a/scripts/tags.sh
+++ b/scripts/tags.sh
@@ -50,7 +50,7 @@ fi
find_arch_sources()
{
for i in $archincludedir; do
- prune="$prune ( -path $i ) -prune -o"
+ local prune="$prune ( -path $i ) -prune -o"
done
find ${tree}arch/$1 $ignore $prune -name "$2" -not -type l -print;
}
@@ -58,7 +58,7 @@ find_arch_sources()
# find sources in arch/$1/include
find_arch_include_sources()
{
- include=$(find ${tree}arch/$1/ -name include -type d -print);
+ local include=$(find ${tree}arch/$1/ -name include -type d -print);
if [ -n "$include" ]; then
archincludedir="$archincludedir $include"
find $include $ignore -name "$2" -not -type l -print;