From: Martin Dietze Date: Sun, 29 Nov 2009 20:07:17 +0000 (+0100) Subject: e2fsprogs-libs.inc: removed dependency to unsupported util-linux-ng for nylon X-Git-Tag: Release-2010-05/1~1575^2~5 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4673d2c813ce9f883effc8a7d28052c9741fdc0;p=openembedded.git e2fsprogs-libs.inc: removed dependency to unsupported util-linux-ng for nylon * on nylon util-linux-ng is not needed and not supported, e2fsprogs-libs can be built without depending on it * this revision adds an override vor nylon which sets the necessary options to `configure' and deploys the uuid header and lib to staging --- diff --git a/recipes/e2fsprogs-libs/e2fsprogs-libs.inc b/recipes/e2fsprogs-libs/e2fsprogs-libs.inc index 45618b008c..f5e974b8aa 100644 --- a/recipes/e2fsprogs-libs/e2fsprogs-libs.inc +++ b/recipes/e2fsprogs-libs/e2fsprogs-libs.inc @@ -35,3 +35,12 @@ do_stage () { install -m 0644 lib/ss/ss.h ${STAGING_INCDIR}/ss/ install -m 0644 lib/ss/ss_err.h ${STAGING_INCDIR}/ss/ } + +# avoid requiring unsupported util-linux-ng for nylon, provide uuid for others... +DEPENDS_nylon = "" +EXTRA_OECONF_nylon = "" +do_stage_append_nylon() { + install -d ${STAGING_INCDIR}/uuid + install -m 0644 lib/uuid/uuid.h ${STAGING_INCDIR}/uuid/ + install -m 0644 lib/uuid/libuuid.a ${STAGING_LIBDIR}/ +}