Hello, list! The krb5 recipe says krb5 depends on system's libcom_err that comes with e2fsprogs. But the recipe lists the native version of e2fsprogs in DEPENDS. The following one-liner fixed compilation for me:
diff --git a/recipes/krb/krb5_1.6.3.bb b/recipes/krb/krb5_1.6.3.bb index e25cdcf..35c7975 100644 --- a/recipes/krb/krb5_1.6.3.bb +++ b/recipes/krb/krb5_1.6.3.bb @@ -3,7 +3,7 @@ HOMEPAGE = "http://web.mit.edu/Kerberos/" SECTION = "console/network" PR = "r6" LICENSE = "MIT" -DEPENDS = "perl-native ncurses util-linux-ng e2fsprogs-native" +DEPENDS = "perl-native ncurses util-linux-ng e2fsprogs" inherit autotools binconfig -- Dmitry Ivanov KDE PIM developer (pim.kde.org) partimage-ng developer (partimage-ng.net) _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
