summaryrefslogtreecommitdiffstats
path: root/meta/classes/autotools.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-29 15:21:56 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-30 00:11:51 +0100
commit2f2875f73ceec4839f1fdbbd65a216a0cc840b76 (patch)
treea62e24e1de0d60c24d0125e9675af83257e2d74d /meta/classes/autotools.bbclass
parenta4b9bf3a1e48d5a65896807597522627c6ac5e1c (diff)
downloadpoky-2f2875f73ceec4839f1fdbbd65a216a0cc840b76.tar.gz
autotools/base/icecc: Remove prepend from function names
Using prepend as part of a function name is a poor choice. Whilst we're about to make the syntax explict, improve the names anyway making the conversion easier and the intent clear that this isn't an override. (From OE-Core rev: 9d002acae720b0a8e96a6734424a142b86880461) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/autotools.bbclass')
-rw-r--r--meta/classes/autotools.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index 9dc8ebdaa7..77d90a3df5 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -1,4 +1,4 @@
1def autotools_dep_prepend(d): 1def get_autotools_dep(d):
2 if d.getVar('INHIBIT_AUTOTOOLS_DEPS'): 2 if d.getVar('INHIBIT_AUTOTOOLS_DEPS'):
3 return '' 3 return ''
4 4
@@ -19,7 +19,7 @@ def autotools_dep_prepend(d):
19 19
20 return deps 20 return deps
21 21
22DEPENDS_prepend = "${@autotools_dep_prepend(d)} " 22DEPENDS_prepend = "${@get_autotools_dep(d)} "
23 23
24inherit siteinfo 24inherit siteinfo
25 25