mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 01:19:52 +00: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
|
log_check rootfs
|
||||||
|
|
||||||
# Workaround so the parser knows we need the resolve_package function!
|
# Workaround so the parser knows we need the resolve_package function!
|
||||||
exit 0
|
if false ; then
|
||||||
resolve_package foo || true
|
resolve_package foo || true
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
rootfs_rpm_log_check() {
|
rootfs_rpm_log_check() {
|
||||||
|
|||||||
Reference in New Issue
Block a user