mirror of
https://git.yoctoproject.org/poky
synced 2026-04-18 03:32:13 +02:00
rootfs_rpm: Fix workaround
The exit 0 in the workaround seems to have causes the filesystem creation process to stop. Instead change it to an if that can never succeed. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
This commit is contained in:
committed by
Richard Purdie
parent
75bffcd47a
commit
d87034e41a
@@ -200,8 +200,9 @@ EOF
|
||||
log_check rootfs
|
||||
|
||||
# Workaround so the parser knows we need the resolve_package function!
|
||||
exit 0
|
||||
resolve_package foo || true
|
||||
if false ; then
|
||||
resolve_package foo || true
|
||||
fi
|
||||
}
|
||||
|
||||
rootfs_rpm_log_check() {
|
||||
|
||||
Reference in New Issue
Block a user