1
0
Fork 0

tags: honor COMPILED_SOURCE with apart output directory

When the kernel is compiled with an "O=" argument, the object files are
not in the source tree, but in the build tree.

This patch fixes O= build by looking for object files in the build tree.

Fixes: 923e02ecf3 ("scripts/tags.sh: Support compiled source")
Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
zero-colors
Robert Jarzmik 2017-06-05 13:59:15 +02:00 committed by Masahiro Yamada
parent 3def03441e
commit cbf52a3e6a
1 changed files with 1 additions and 0 deletions

View File

@ -106,6 +106,7 @@ all_compiled_sources()
case "$i" in
*.[cS])
j=${i/\.[cS]/\.o}
j="${j#$tree}"
if [ -e $j ]; then
echo $i
fi