diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2015-08-26 18:10:45 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-03 12:43:21 +0100 |
commit | ae69b1fe8e61fdb29a6c95d5365c36876710c116 (patch) | |
tree | a34c46ac5be0731875871da3f8d3160562b81fc9 | |
parent | d0b71dd0e9d995d542f8914cb76f700f14d9d2a0 (diff) | |
download | poky-ae69b1fe8e61fdb29a6c95d5365c36876710c116.tar.gz |
mtd-utils: add xattr PACKAGECONFIG and fix acl dependency
The unconditional removal of -DWITHOUT_XATTR accidentally introduced a
compile-time dependency on "acl", because "sys/acl.h" gets
included. This caused random compile failures.
To fix this, we introduce a proper PACKAGECONFIG for the "xattr"
support, with the distro's "xattr" feature determining the
default. Setting the define must be done with custom code because
PACKAGECONFIG can only influence configure parameters.
The "acl" distro feature is not checked because although enabling
"xattr" support now triggers a build of acl, nothing from it will not
get included in the resulting target image. This seems more suitable
than not enabling xattr support in mtd-utils when acl support in the
distro is disabled.
(From OE-Core rev: 0c4498878df352b9dbaa118c3cc201454ac22154)
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/mtd/mtd-utils_git.bb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/recipes-devtools/mtd/mtd-utils_git.bb b/meta/recipes-devtools/mtd/mtd-utils_git.bb index 8d4892a0d4..17dca77609 100644 --- a/meta/recipes-devtools/mtd/mtd-utils_git.bb +++ b/meta/recipes-devtools/mtd/mtd-utils_git.bb | |||
@@ -19,7 +19,13 @@ SRC_URI = "git://git.infradead.org/mtd-utils.git \ | |||
19 | 19 | ||
20 | S = "${WORKDIR}/git/" | 20 | S = "${WORKDIR}/git/" |
21 | 21 | ||
22 | EXTRA_OEMAKE = "'CC=${CC}' 'RANLIB=${RANLIB}' 'AR=${AR}' 'CFLAGS=${CFLAGS} -I${S}/include' 'BUILDDIR=${S}'" | 22 | # xattr support creates an additional compile-time dependency on acl because |
23 | # the sys/acl.h header is needed. libacl is not needed and thus enabling xattr | ||
24 | # regardless whether acl is enabled or disabled in the distro should be okay. | ||
25 | PACKAGECONFIG ?= "${@bb.utils.contains('DISTRO_FEATURES', 'xattr', 'xattr', '', d)}" | ||
26 | PACKAGECONFIG[xattr] = ",,acl," | ||
27 | |||
28 | EXTRA_OEMAKE = "'CC=${CC}' 'RANLIB=${RANLIB}' 'AR=${AR}' 'CFLAGS=${CFLAGS} ${@bb.utils.contains('PACKAGECONFIG', 'xattr', '', '-DWITHOUT_XATTR', d)} -I${S}/include' 'BUILDDIR=${S}'" | ||
23 | 29 | ||
24 | do_install () { | 30 | do_install () { |
25 | oe_runmake install DESTDIR=${D} SBINDIR=${sbindir} MANDIR=${mandir} INCLUDEDIR=${includedir} | 31 | oe_runmake install DESTDIR=${D} SBINDIR=${sbindir} MANDIR=${mandir} INCLUDEDIR=${includedir} |