diff options
author | Martin Dietze <herbert@spamcop.net> | 2009-11-29 21:07:17 +0100 |
---|---|---|
committer | Martin Dietze <herbert@spamcop.net> | 2009-11-29 21:07:17 +0100 |
commit | e4673d2c813ce9f883effc8a7d28052c9741fdc0 (patch) | |
tree | 15533779ac5e182e671e31d1cf17934b2c57e464 | |
parent | 1d574db013d8f673e46b8982b5275db21742370d (diff) |
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
-rw-r--r-- | recipes/e2fsprogs-libs/e2fsprogs-libs.inc | 9 |
1 files changed, 9 insertions, 0 deletions
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}/ +} |