diff options
author | Alejandro Hernandez <alejandro.hernandez@linux.intel.com> | 2017-10-09 11:42:40 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-10-16 23:53:45 +0100 |
commit | 8333c0a54d4f5ad0eec4f27d7afbf92192b5b128 (patch) | |
tree | 17c808d7e3476be290ab160b64825b9cb2ff2b44 | |
parent | acc23e16feeb84008babd08f705d2c2c57a8e2b5 (diff) | |
download | poky-8333c0a54d4f5ad0eec4f27d7afbf92192b5b128.tar.gz |
bitbake.conf: Adds ipv6 to DISTRO_FEATURES_NATIVE
Before we introduced DISTRO_FEATURES_NATIVE on commit:
db1f1adace58763c35774e3fdfeaac5c3ca646fd
ipv6 was enabled by default on DISTRO_FEATURES via DISTRO_FEATURES_LIBC
hence for example python-native was built with ipv6 support.
After this, ipv6 was automatically disabled on DISTRO_FEATURES.
On some packages (python) this may cause errors when they try to download
something on their do_compile stage.
This patch adds ipv6 to DISTRO_FEATURES_NATIVE leaving it as it was
before, to avoid errors like the one mentioned above
[YOCTO #11978]
(From OE-Core rev: a09184bf47323b63d9548d17cc1e4e694cb605a9)
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 4fba9d6f02..9696273acc 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -807,7 +807,7 @@ IMAGE_FEATURES += "${EXTRA_IMAGE_FEATURES}" | |||
807 | 807 | ||
808 | # Native distro features (will always be used for -native, even if they | 808 | # Native distro features (will always be used for -native, even if they |
809 | # are not enabled for target) | 809 | # are not enabled for target) |
810 | DISTRO_FEATURES_NATIVE ?= "x11" | 810 | DISTRO_FEATURES_NATIVE ?= "x11 ipv6" |
811 | DISTRO_FEATURES_NATIVESDK ?= "x11 libc-charsets libc-locales libc-locale-code" | 811 | DISTRO_FEATURES_NATIVESDK ?= "x11 libc-charsets libc-locales libc-locale-code" |
812 | 812 | ||
813 | # Normally target distro features will not be applied to native builds: | 813 | # Normally target distro features will not be applied to native builds: |