diff options
Diffstat (limited to 'meta/classes-recipe/distro_features_check.bbclass')
-rw-r--r-- | meta/classes-recipe/distro_features_check.bbclass | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/meta/classes-recipe/distro_features_check.bbclass b/meta/classes-recipe/distro_features_check.bbclass new file mode 100644 index 0000000000..1f2674fd6e --- /dev/null +++ b/meta/classes-recipe/distro_features_check.bbclass | |||
@@ -0,0 +1,13 @@ | |||
1 | # | ||
2 | # Copyright OpenEmbedded Contributors | ||
3 | # | ||
4 | # SPDX-License-Identifier: MIT | ||
5 | # | ||
6 | |||
7 | # Temporarily provide fallback to the old name of the class | ||
8 | |||
9 | python __anonymous() { | ||
10 | bb.warn("distro_features_check.bbclass is deprecated, please use features_check.bbclass instead") | ||
11 | } | ||
12 | |||
13 | inherit features_check | ||