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:
Mark Hatle
2010-09-09 14:46:23 -05:00
committed by Richard Purdie
parent 75bffcd47a
commit d87034e41a

View File

@@ -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() {