From: Tim 'timtim' Ellis Date: Sun, 1 Feb 2009 02:52:34 +0000 (+0000) Subject: krb5: Fix issues with do_configure X-Git-Tag: Release-2010-05/1~4035 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cbcb3f64f5168a19d3e5b831195c614c45a53ee1;p=openembedded.git krb5: Fix issues with do_configure --- diff --git a/packages/krb/krb5_1.6.3.bb b/packages/krb/krb5_1.6.3.bb index b13e5f15b1..5fc75b4c7e 100644 --- a/packages/krb/krb5_1.6.3.bb +++ b/packages/krb/krb5_1.6.3.bb @@ -1,7 +1,7 @@ DESCRIPTION = "A network authentication protocol" HOMEPAGE = "http://web.mit.edu/Kerberos/" SECTION = "console/network" -PR = "r4" +PR = "r5" LICENSE = "MIT" DEPENDS = "perl-native ncurses e2fsprogs-libs" @@ -20,9 +20,17 @@ LDFLAGS_append += "-lpthread" FILES_${PN}-doc += /usr/share/examples -do_configure() { +krb5_do_unpack() { tar xzf ${WORKDIR}/krb5-1.6.3.tar.gz -C ${WORKDIR}/ - patch -p1 < ${WORKDIR}/fix-uclibc-ruserpass-collision.patch + patch -d ${S} -p1 < ${WORKDIR}/fix-uclibc-ruserpass-collision.patch +} + +python do_unpack() { + bb.build.exec_func('base_do_unpack', d) + bb.build.exec_func('krb5_do_unpack', d) +} + +do_configure() { oe_runconf }