aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2024-02-29 17:27:57 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2024-02-29 17:27:57 +0000
commit7bb5d3d53cd124964e0eb714eae6d4cfb9535b66 (patch)
tree93fea390b8eb7cce5368c073e59aac611e427168
parent50d3e369320810b3b8a3533e092d0377255f7d98 (diff)
lib/make.sh (build): Print stamps of srcdir
... after configure and after build, to help understand why a subsequent call to ABE decides it's worth rebuilding. Change-Id: I27ed7103231769280e635ffe9cc76014ef7f3ae4
-rw-r--r--lib/make.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/make.sh b/lib/make.sh
index 54a18dce..e652a03a 100644
--- a/lib/make.sh
+++ b/lib/make.sh
@@ -336,6 +336,8 @@ build()
error "Configure of $1 failed!"
return $?
fi
+ # For debug purpose, print modification dates after configure
+ notice "Source dir stamp after configure: ${srcdir} $(dryrun "stat -c %Y ${srcdir}")"
# Clean the build directories when forced
if test x"${force}" = xyes; then
@@ -372,6 +374,8 @@ build()
fi
create_stamp "${stampdir}" "${stamp}"
+ # For debug purpose, print modification dates after configure
+ notice "Source dir stamp after build: ${srcdir} $(dryrun "stat -c %Y ${srcdir}")"
local tag="$(create_release_tag ${component})"
notice "Done building ${tag}${2:+ $2}, took ${SECONDS} seconds"