]> code.ossystems Code Review - openembedded-core.git/commitdiff
distrooverrides.bbclass: fix default configuration
authorPatrick Ohly <patrick.ohly@intel.com>
Wed, 12 Jul 2017 09:08:34 +0000 (11:08 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 17 Jul 2017 12:48:52 +0000 (13:48 +0100)
When using distrooverrides.bbclass without setting
DISTRO_FEATURES_OVERRIDES, the code failed because of a spelling error
in the default.

[YOCTO #11759]

Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/classes/distrooverrides.bbclass

index 9a42712f20189579e3b6cb37feffe69a35e640cc..9f4db0d771c128b78875c1110b6e1e76b0000684 100644 (file)
@@ -18,8 +18,8 @@
 # of these overrides should be limited to .bb and .bbappend files,
 # because then DISTRO_FEATURES is final.
 
-DISTRO_FEATURE_OVERRIDES ?= ""
-DISTRO_FEATURE_OVERRIDES[doc] = "A space-separated list of <feature> entries. \
+DISTRO_FEATURES_OVERRIDES ?= ""
+DISTRO_FEATURES_OVERRIDES[doc] = "A space-separated list of <feature> entries. \
 Each entry is added to OVERRIDES as df-<feature> if <feature> is in DISTRO_FEATURES."
 
 DISTRO_FEATURES_FILTER_NATIVE_append = " ${DISTRO_FEATURES_OVERRIDES}"