diff options
Diffstat (limited to 'meta/classes/autotools.bbclass')
-rw-r--r-- | meta/classes/autotools.bbclass | 4 |
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 @@ | |||
1 | def autotools_dep_prepend(d): | 1 | def 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 | ||
22 | DEPENDS_prepend = "${@autotools_dep_prepend(d)} " | 22 | DEPENDS_prepend = "${@get_autotools_dep(d)} " |
23 | 23 | ||
24 | inherit siteinfo | 24 | inherit siteinfo |
25 | 25 | ||