summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlrich Ölmann <u.oelmann@pengutronix.de>2023-02-08 01:01:55 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-02-24 16:41:46 +0000
commit3ad697337df9eaad9d774bdf211b6f40e1cf13e7 (patch)
tree449e6d718b991f651662230a0ea959c0d914331f
parent486f0c93b6a8129281dd93945187ca9edec17e73 (diff)
downloadpoky-3ad697337df9eaad9d774bdf211b6f40e1cf13e7.tar.gz
update-alternatives: fix typos
(From OE-Core rev: 6b6f3cfe8995663b31482e70285863266dfd9d80) Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit d3ca05b072c152b76a86edaaddebabdef312ea95) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/update-alternatives.bbclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/update-alternatives.bbclass b/meta/classes/update-alternatives.bbclass
index fc1ffd828c..7581a70439 100644
--- a/meta/classes/update-alternatives.bbclass
+++ b/meta/classes/update-alternatives.bbclass
@@ -1,5 +1,5 @@
1# This class is used to help the alternatives system which is useful when 1# This class is used to help the alternatives system which is useful when
2# multiple sources provide same command. You can use update-alternatives 2# multiple sources provide the same command. You can use update-alternatives
3# command directly in your recipe, but in most cases this class simplifies 3# command directly in your recipe, but in most cases this class simplifies
4# that job. 4# that job.
5# 5#
@@ -29,7 +29,7 @@
29# A non-default link to create for a target 29# A non-default link to create for a target
30# ALTERNATIVE_TARGET[name] = "target" 30# ALTERNATIVE_TARGET[name] = "target"
31# 31#
32# This is the name of the binary as it's been install by do_install 32# This is the name of the binary as it's been installed by do_install
33# i.e. ALTERNATIVE_TARGET[sh] = "/bin/bash" 33# i.e. ALTERNATIVE_TARGET[sh] = "/bin/bash"
34# 34#
35# A package specific link for a target 35# A package specific link for a target
@@ -62,7 +62,7 @@ ALTERNATIVE_PRIORITY = "10"
62 62
63# We need special processing for vardeps because it can not work on 63# We need special processing for vardeps because it can not work on
64# modified flag values. So we aggregate the flags into a new variable 64# modified flag values. So we aggregate the flags into a new variable
65# and include that vairable in the set. 65# and include that variable in the set.
66UPDALTVARS = "ALTERNATIVE ALTERNATIVE_LINK_NAME ALTERNATIVE_TARGET ALTERNATIVE_PRIORITY" 66UPDALTVARS = "ALTERNATIVE ALTERNATIVE_LINK_NAME ALTERNATIVE_TARGET ALTERNATIVE_PRIORITY"
67 67
68PACKAGE_WRITE_DEPS += "virtual/update-alternatives-native" 68PACKAGE_WRITE_DEPS += "virtual/update-alternatives-native"