public inbox for linux-kbuild@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tags: honor COMPILED_SOURCE with apart output directory
@ 2016-10-17 20:27 Robert Jarzmik
  2016-12-06 11:54 ` Robert Jarzmik
  0 siblings, 1 reply; 5+ messages in thread
From: Robert Jarzmik @ 2016-10-17 20:27 UTC (permalink / raw)
  To: Michal Marek; +Cc: linux-kernel, linux-kbuild, Robert Jarzmik

When the kernel is compiled with an "O=" argument, the object files are
not necessarily in the source tree, and more probably in another tree.

In this situation, the current used check doesn't work, and
COMPILED_SOURCE tags is broken with O= builds.

This patch fixes it by looking for object files both in source tree and
potential destination tree.

Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
---
 scripts/tags.sh | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/scripts/tags.sh b/scripts/tags.sh
index b3775a9604ea..c0220fa05617 100755
--- a/scripts/tags.sh
+++ b/scripts/tags.sh
@@ -106,7 +106,9 @@ all_compiled_sources()
 		case "$i" in
 			*.[cS])
 				j=${i/\.[cS]/\.o}
-				if [ -e $j ]; then
+				k=${i/"$tree"/"$O"\/}
+				k=${k/\.[cS]/\.o}
+				if [ -e $j -o -e "$k" ]; then
 					echo $i
 				fi
 				;;
-- 
2.1.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-12-12 20:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-17 20:27 [PATCH] tags: honor COMPILED_SOURCE with apart output directory Robert Jarzmik
2016-12-06 11:54 ` Robert Jarzmik
2016-12-11 21:20   ` Michal Marek
2016-12-12 17:13     ` Robert Jarzmik
2016-12-12 20:41       ` Michal Marek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox