* [PATCH] fix: variable reference in do_rootfs_quality_check
@ 2022-11-20 9:28 Adriaan Schmidt
2022-11-29 13:22 ` Anton Mikanovich
0 siblings, 1 reply; 2+ messages in thread
From: Adriaan Schmidt @ 2022-11-20 9:28 UTC (permalink / raw)
To: isar-users; +Cc: Adriaan Schmidt
correct variable reference of ROOTFS_QA_FIND_ARGS to actually reference the
bitbake variable.
Signed-off-by: Adriaan Schmidt <adriaan.schmidt@siemens.com>
---
meta/classes/image.bbclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index d8d605d3..813e1f34 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -440,7 +440,7 @@ do_rootfs_quality_check() {
rootfs_install_stamp=$( ls -1 "${STAMP}".do_rootfs_install* | head -1 )
test -f "$rootfs_install_stamp"
- args="$ROOTFS_QA_FIND_ARGS"
+ args="${ROOTFS_QA_FIND_ARGS}"
# rootfs_finalize chroot-setup.sh
args="${args} ! -path ${ROOTFSDIR}/var/lib/dpkg/diversions"
for cmd in ${ROOTFS_POSTPROCESS_COMMAND}; do
--
2.30.2
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-11-29 13:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-20 9:28 [PATCH] fix: variable reference in do_rootfs_quality_check Adriaan Schmidt
2022-11-29 13:22 ` Anton Mikanovich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox