From patchwork Wed Sep 26 09:22:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/1] rootfs_rpm.bbclass: maybe no rpm postinst script Date: Wed, 26 Sep 2012 09:22:16 -0000 From: Robert Yang X-Patchwork-Id: 37251 Message-Id: <03f41d916fc8d7813612d4d750ecc89c7d4a8382.1348645880.git.liezhi.yang@windriver.com> To: Cc: Zhenfeng.Zhao@windriver.com There maybe no rpm postinst script (e.g., core-image-minimal), then the "*" is not expanded, and there would be error: head: cannot open `rpm-postinsts/*' for reading: No such file or directory Check whether it exists or not will fix the problem. [YOCTO #3172] Signed-off-by: Robert Yang --- meta/classes/rootfs_rpm.bbclass | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/classes/rootfs_rpm.bbclass b/meta/classes/rootfs_rpm.bbclass index d95ccfa..c86cd09 100644 --- a/meta/classes/rootfs_rpm.bbclass +++ b/meta/classes/rootfs_rpm.bbclass @@ -81,7 +81,9 @@ fakeroot rootfs_rpm_do_rootfs () { # Report delayed package scriptlets for i in ${IMAGE_ROOTFS}/etc/rpm-postinsts/*; do - echo "Delayed package scriptlet: `head -n 3 $i | tail -n 1`" + if [ -f $i ]; then + echo "Delayed package scriptlet: `head -n 3 $i | tail -n 1`" + fi done install -d ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d