mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 21:32:13 +02:00
rootfs_deb: fix parsing a shell cmd
This fixes [BUGID #360] parsing failure when using package_dep as rootfs generator. Signed-off-by: Saul Wold <Saul.Wold@intel.com>
This commit is contained in:
@@ -36,7 +36,7 @@ fakeroot rootfs_deb_do_rootfs () {
|
||||
echo "deb file:${DEPLOY_DIR_DEB}/$arch/ ./" >> ${STAGING_ETCDIR_NATIVE}/apt/sources.list.rev
|
||||
(echo "Package: *"
|
||||
echo "Pin: release l=$arch"
|
||||
echo "Pin-Priority: $((800 + $priority))"
|
||||
echo "Pin-Priority: $(expr 800 + $priority)"
|
||||
echo) >> ${STAGING_ETCDIR_NATIVE}/apt/preferences
|
||||
priority=$(expr $priority + 5)
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user