diff options
author | Douglas Royds <douglas.royds@taitradio.com> | 2018-12-20 11:59:45 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-01-28 16:56:26 +0000 |
commit | 57673fe89a9c597d7e1d657a0710f3c60df3c28d (patch) | |
tree | 77eff7646ae445f30f02478ac6d29957f62f078c | |
parent | 193eb75f21daa131b53358a4a1bf63028fe2a28c (diff) | |
download | openembedded-core-57673fe89a9c597d7e1d657a0710f3c60df3c28d.tar.gz openembedded-core-57673fe89a9c597d7e1d657a0710f3c60df3c28d.tar.bz2 openembedded-core-57673fe89a9c597d7e1d657a0710f3c60df3c28d.zip |
icecc: Trivial simplification
(From OE-Core rev: fa6bae80bc3392bf99ce53bbe19a0e05dbd0c4ee)
Signed-off-by: Douglas Royds <douglas.royds@taitradio.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta/classes/icecc.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/icecc.bbclass b/meta/classes/icecc.bbclass index b251e9b5aa..d8a7894887 100644 --- a/meta/classes/icecc.bbclass +++ b/meta/classes/icecc.bbclass @@ -305,7 +305,7 @@ def icecc_get_and_check_tool(bb, d, tool): if t: link_path = icecc_get_tool_link(t, d) if link_path == get_icecc(d): - bb.error("%s is a symlink to %s in PATH and this prevents icecc from working" % (t, get_icecc(d))) + bb.error("%s is a symlink to %s in PATH and this prevents icecc from working" % (t, link_path)) return "" else: return t |