We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9fefa9 commit 0aedf7aCopy full SHA for 0aedf7a
scripts/tags.sh
@@ -50,15 +50,15 @@ fi
50
find_arch_sources()
51
{
52
for i in $archincludedir; do
53
- prune="$prune ( -path $i ) -prune -o"
+ local prune="$prune ( -path $i ) -prune -o"
54
done
55
find ${tree}arch/$1 $ignore $prune -name "$2" -not -type l -print;
56
}
57
58
# find sources in arch/$1/include
59
find_arch_include_sources()
60
61
- include=$(find ${tree}arch/$1/ -name include -type d -print);
+ local include=$(find ${tree}arch/$1/ -name include -type d -print);
62
if [ -n "$include" ]; then
63
archincludedir="$archincludedir $include"
64
find $include $ignore -name "$2" -not -type l -print;
0 commit comments