In most sysroot creation steps, the sysroots components are installed in depenancy order. However, in the case of build-sysroots, since it is not using standard dependacies, post installs that use xmlcatalog fail because xmlcatalog is not installed. Since the last execution in the script is xmlcatalog, the script returns 127.
Signed-off-by: Jeremy A. Puhlman <[email protected]> --- meta/classes/xmlcatalog.bbclass | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/classes/xmlcatalog.bbclass b/meta/classes/xmlcatalog.bbclass index ae4811fdeb..e8d73abcf5 100644 --- a/meta/classes/xmlcatalog.bbclass +++ b/meta/classes/xmlcatalog.bbclass @@ -15,6 +15,7 @@ xmlcatalog_complete() { for CATALOG in ${XMLCATALOGS}; do xmlcatalog --noout --add nextCatalog unused file://$CATALOG $ROOTCATALOG done + exit 0 } xmlcatalog_sstate_postinst() { -- 2.20.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#139810): https://lists.openembedded.org/g/openembedded-core/message/139810 Mute This Topic: https://lists.openembedded.org/mt/75051193/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
