[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <43c5127830dd44e0817c2aa1906fe515@SOC-EX01V.e01.socionext.com>
Date: Fri, 19 Apr 2019 08:59:53 +0000
From: <yamada.masahiro@...ionext.com>
To: <sergey.senozhatsky.work@...il.com>
CC: <linux-kernel@...r.kernel.org>, <sergey.senozhatsky@...il.com>
Subject: RE: [next] kbuild: use $(srctree) instead of KBUILD_SRC to check
out-of-tree build
Hi Sergey,
> -----Original Message-----
> From: Sergey Senozhatsky [mailto:sergey.senozhatsky.work@...il.com]
> Sent: Friday, April 19, 2019 5:34 PM
> To: Yamada, Masahiro/山田 真弘 <yamada.masahiro@...ionext.com>
> Cc: linux-kernel@...r.kernel.org; Sergey Senozhatsky
> <sergey.senozhatsky@...il.com>
> Subject: [next] kbuild: use $(srctree) instead of KBUILD_SRC to check
> out-of-tree build
>
> Hello Masahiro,
>
> It seems that commit a9a49c2ad9b9b8 (linux-next) breaks ./scripts/tags.sh
> on my system. It scans, basically, my entire drive now (including the
> root partition):
>
> $ ./scripts/tags.sh tags
I did not know this script is run directly
because I expected people were using 'make tags'.
It is easy to fix, though.
diff --git a/scripts/tags.sh b/scripts/tags.sh
index 6a551805db52..70e14c67bde7 100755
--- a/scripts/tags.sh
+++ b/scripts/tags.sh
@@ -19,7 +19,7 @@ ignore="$ignore ( -name *.mod.c ) -prune -o"
# Do not use full path if we do not use O=.. builds
# Use make O=. {tags|cscope}
# to force full paths for a non-O= build
-if [ "${srctree}" = "." ]; then
+if [ "${srctree}" = "." -o -z "${srctree}" ]; then
tree=
else
tree=${srctree}/
> find: ‘/arch/*.[chS]/’: No such file or directory
> find: ‘/include’: No such file or directory
> find: ‘/boot/lost+found’: Permission denied
> find: ‘/etc/pacman.d/gnupg/openpgp-revocs.d’: Permission denied
> find: ‘/etc/pacman.d/gnupg/private-keys-v1.d’: Permission denied
> find: ‘/etc/pacman.d/gnupg/crls.d’: Permission denied
> find: ‘/etc/polkit-1/rules.d’: Permission denied
> find: ‘/etc/sudoers.d’: Permission denied
> find: ‘/etc/audisp/plugins.d’: Permission denied
> find: ‘/home/lost+found’: Permission denied
> find: ‘/home/sk’: Permission denied
> find: ‘/lost+found’: Permission denied
> ctags: Warning: --extra option is obsolete; use --extras instead
> [..]
>
>
> With reverted a9a49c2ad9b9b8 tags scans kernel source tree only
>
> ./scripts/tags.sh tags
> find: ‘arch/*.[chS]/’: No such file or directory
> ctags: Warning: --extra option is obsolete; use --extras instead
> [..]
>
> -ss
Powered by blists - more mailing lists