The current find done in find_other_sources() excludes folders
in the kernel tree that are named 'include', eg.:

        ./security/apparmor/include
        ./security/selinux/include
        ./drivers/net/wireless/broadcom/brcm80211/include
        ./drivers/gpu/drm/amd/acp/include
        ./drivers/gpu/drm/amd/display/include
        ./drivers/gpu/drm/amd/include
        ./drivers/gpu/drm/nouveau/include

This changes the find command in the find_other_sources() function
to include those using the -path option.

Signed-off-by: Arend van Spriel <[email protected]>
---
 scripts/tags.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/tags.sh b/scripts/tags.sh
index d23dcbf..78e546f 100755
--- a/scripts/tags.sh
+++ b/scripts/tags.sh
@@ -77,7 +77,7 @@ find_include_sources()
 find_other_sources()
 {
        find ${tree}* $ignore \
-            \( -name include -o -name arch -o -name '.tmp_*' \) -prune -o \
+            \( -path ${tree}include -o -path ${tree}arch -o -name '.tmp_*' \) 
-prune -o \
               -name "$1" -not -type l -print;
 }
 
-- 
1.9.1

Reply via email to