diff options
author | Andreas Kaufmann <andreas.kaufmann.79@gmail.com> | 2018-03-22 17:06:08 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-03-28 12:09:51 +0100 |
commit | 044ad48c53ded84a636f4e7e3c9903fff22b7b83 (patch) | |
tree | 31cc87b8fc54d7885e31c62b5e3c05cd274929dd /meta/recipes-devtools/pseudo | |
parent | 39e0d1f0e4e3afe8e7032bb462d21f2e6f8b714e (diff) | |
download | poky-044ad48c53ded84a636f4e7e3c9903fff22b7b83.tar.gz |
pseudo: explicitly enable xattr support
Pseudo is using a custom configure script that detects if it shall build with
extended file attribute support or not. The check is done by simply calling
'getfattr' provided by attr-native which is not part of the dependency list.
Due to the recent changes (recipe specific sysroot & cleanup of $PATH) this
call fails now when the recipe is being build for the first time (at least
when being build for nativesdk case). Explicitly setting up a dependency to
attr-native just to satisfy configure would be wrong also since the real
dependency is to attr/nativesdk-attr which are already part of the dependency
list (see DEPENDS). Therefore bypass the test in the configure by explicitly
enabling xattr using a configure option available in any case.
(From OE-Core rev: a7381eb16ba2183ed990a009bb8e82b4702f3d98)
Signed-off-by: Andreas Kaufmann <andreas.kaufmann.79@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/pseudo')
-rw-r--r-- | meta/recipes-devtools/pseudo/pseudo.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/pseudo/pseudo.inc b/meta/recipes-devtools/pseudo/pseudo.inc index fb742522f5..cdc2a5823f 100644 --- a/meta/recipes-devtools/pseudo/pseudo.inc +++ b/meta/recipes-devtools/pseudo/pseudo.inc | |||
@@ -26,7 +26,7 @@ do_configure () { | |||
26 | NO32LIBS ??= "1" | 26 | NO32LIBS ??= "1" |
27 | NO32LIBS_class-nativesdk = "1" | 27 | NO32LIBS_class-nativesdk = "1" |
28 | 28 | ||
29 | PSEUDO_EXTRA_OPTS ?= "--enable-force-async --without-passwd-fallback --enable-epoll" | 29 | PSEUDO_EXTRA_OPTS ?= "--enable-force-async --without-passwd-fallback --enable-epoll --enable-xattr" |
30 | 30 | ||
31 | # Compile for the local machine arch... | 31 | # Compile for the local machine arch... |
32 | do_compile () { | 32 | do_compile () { |