mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 09:32:14 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
62547e70ee
commit
53f1446ce4
@@ -446,7 +446,7 @@ package_install_internal_rpm () {
|
||||
outfile=${target_rootfs}/install/total_solution.manifest
|
||||
cat $infile | grep /base-passwd-[0-9] > $outfile || true
|
||||
cat $infile | grep /shadow-[0-9] >> $outfile || true
|
||||
cat $infile | grep -v /shadow-[0-9] | grep -v /base-passwd-[0-9] >> $outfile
|
||||
cat $infile | grep -v /shadow-[0-9] | grep -v /base-passwd-[0-9] >> $outfile || true
|
||||
cat ${target_rootfs}/install/install_multilib_solution.manifest >> ${target_rootfs}/install/total_solution.manifest
|
||||
|
||||
# Construct install scriptlet wrapper
|
||||
|
||||
Reference in New Issue
Block a user