diff options
author | Jessica Zhang <jessica.zhang@intel.com> | 2012-03-26 14:31:12 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-26 23:08:19 +0100 |
commit | 53f1446ce4299d547d5e1e230d5b6a9d62b4a080 (patch) | |
tree | 095946b6fa375a4ff4a806145b8622381a308faa /meta/classes/package_rpm.bbclass | |
parent | 62547e70eea6a050527776af0811013e105f3718 (diff) | |
download | poky-53f1446ce4299d547d5e1e230d5b6a9d62b4a080.tar.gz |
Fix empty file case that caused build error at do_rootfs
(From OE-Core rev: 2035ce464cc41672c98f7efb8c4a966f93aa7bd0)
Signed-off-by: Jessica Zhang <jessica.zhang@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/package_rpm.bbclass')
-rw-r--r-- | meta/classes/package_rpm.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/package_rpm.bbclass b/meta/classes/package_rpm.bbclass index e83fc552c9..8c8d967741 100644 --- a/meta/classes/package_rpm.bbclass +++ b/meta/classes/package_rpm.bbclass | |||
@@ -446,7 +446,7 @@ package_install_internal_rpm () { | |||
446 | outfile=${target_rootfs}/install/total_solution.manifest | 446 | outfile=${target_rootfs}/install/total_solution.manifest |
447 | cat $infile | grep /base-passwd-[0-9] > $outfile || true | 447 | cat $infile | grep /base-passwd-[0-9] > $outfile || true |
448 | cat $infile | grep /shadow-[0-9] >> $outfile || true | 448 | cat $infile | grep /shadow-[0-9] >> $outfile || true |
449 | cat $infile | grep -v /shadow-[0-9] | grep -v /base-passwd-[0-9] >> $outfile | 449 | cat $infile | grep -v /shadow-[0-9] | grep -v /base-passwd-[0-9] >> $outfile || true |
450 | cat ${target_rootfs}/install/install_multilib_solution.manifest >> ${target_rootfs}/install/total_solution.manifest | 450 | cat ${target_rootfs}/install/install_multilib_solution.manifest >> ${target_rootfs}/install/total_solution.manifest |
451 | 451 | ||
452 | # Construct install scriptlet wrapper | 452 | # Construct install scriptlet wrapper |