Re: [OE-core] [PATCH v2] mtd-utils: disable xattr if DISTRO_FEATURES doesn't contain acl

2015-08-26 Thread Patrick Ohly
-core@lists.openembedded.org Subject: [OE-core] [PATCH v2] mtd-utils: disable xattr if DISTRO_FEATURES doesn't contain acl After commit 24fde4d do_compile fails: | mkfs.jffs2.c:70:21: fatal error: sys/acl.h: No such file or directory | #include sys/acl.h This is a missing

Re: [OE-core] [PATCH v2] mtd-utils: disable xattr if DISTRO_FEATURES doesn't contain acl

2015-08-26 Thread Huang, Jie (Jackie)
-utils: disable xattr if DISTRO_FEATURES doesn't contain acl After commit 24fde4d do_compile fails: | mkfs.jffs2.c:70:21: fatal error: sys/acl.h: No such file or directory | #include sys/acl.h This is a missing dependency on acl. To fix this we add a check to disable xattr when acl

Re: [OE-core] [PATCH v2] mtd-utils: disable xattr if DISTRO_FEATURES doesn't contain acl

2015-08-26 Thread Huang, Jie (Jackie)
, 2015 5:59 AM To: openembedded-core@lists.openembedded.org Subject: [OE-core] [PATCH v2] mtd-utils: disable xattr if DISTRO_FEATURES doesn't contain acl After commit 24fde4d do_compile fails: | mkfs.jffs2.c:70:21: fatal error: sys/acl.h: No such file or | directory #include sys

Re: [OE-core] [PATCH v2] mtd-utils: disable xattr if DISTRO_FEATURES doesn't contain acl

2015-08-25 Thread Patrick Ohly
On Sat, 2015-08-22 at 23:59 +0200, Andrea Adami wrote: After commit 24fde4d do_compile fails: | mkfs.jffs2.c:70:21: fatal error: sys/acl.h: No such file or directory | #include sys/acl.h This is a missing dependency on acl. To fix this we add a check to disable xattr when acl is not in

[OE-core] [PATCH v2] mtd-utils: disable xattr if DISTRO_FEATURES doesn't contain acl

2015-08-22 Thread Andrea Adami
After commit 24fde4d do_compile fails: | mkfs.jffs2.c:70:21: fatal error: sys/acl.h: No such file or directory | #include sys/acl.h This is a missing dependency on acl. To fix this we add a check to disable xattr when acl is not in DISTRO_FEATURES. Signed-off-by: Andrea Adami