From patchwork Tue Jan 29 09:02:40 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/1] rootfs_rpm.bbclass: fix a bug in run-postinst script Date: Tue, 29 Jan 2013 09:02:40 -0000 From: Qi.Chen@windriver.com X-Patchwork-Id: 43611 Message-Id: <5e787fa57650088573366333c26deb9c463bfe6f.1359449833.git.Qi.Chen@windriver.com> To: Cc: Zhenfeng.Zhao@windriver.com From: Chen Qi This is a follow-up patch which fixes a bug introduced by the commit bd10a6d257ab5ce2fc961788c278af7c43637404. The `` command substitution characters should be excaped by \ to make things work correctly. [YOCTO #3767] Signed-off-by: Chen Qi --- meta/classes/rootfs_rpm.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/rootfs_rpm.bbclass b/meta/classes/rootfs_rpm.bbclass index accd7d9..119bf92 100644 --- a/meta/classes/rootfs_rpm.bbclass +++ b/meta/classes/rootfs_rpm.bbclass @@ -108,7 +108,7 @@ fakeroot rootfs_rpm_do_rootfs () { i=\$i cat > ${IMAGE_ROOTFS}${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}run-postinsts << EOF #!/bin/sh -for i in `ls /etc/rpm-postinsts/`; do +for i in \`ls /etc/rpm-postinsts/\`; do i=/etc/rpm-postinsts/$i echo "Running postinst $i..." if [ -f $i ] && $i; then