diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/base.bbclass | 21 | ||||
-rw-r--r-- | meta/classes/gettext.bbclass | 2 |
2 files changed, 8 insertions, 15 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index d95afb7b9b..78926656d7 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -61,22 +61,15 @@ oe_runmake() { | |||
61 | 61 | ||
62 | 62 | ||
63 | def base_dep_prepend(d): | 63 | def base_dep_prepend(d): |
64 | # | 64 | if d.getVar('INHIBIT_DEFAULT_DEPS', False): |
65 | # Ideally this will check a flag so we will operate properly in | 65 | return "" |
66 | # the case where host == build == target, for now we don't work in | 66 | return "${BASE_DEFAULT_DEPS}" |
67 | # that case though. | ||
68 | # | ||
69 | 67 | ||
70 | deps = "" | 68 | BASE_DEFAULT_DEPS = "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}compilerlibs virtual/libc" |
71 | # INHIBIT_DEFAULT_DEPS doesn't apply to the patch command. Whether or not | ||
72 | # we need that built is the responsibility of the patch function / class, not | ||
73 | # the application. | ||
74 | if not d.getVar('INHIBIT_DEFAULT_DEPS', False): | ||
75 | if (d.getVar('HOST_SYS') != d.getVar('BUILD_SYS')): | ||
76 | deps += " virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}compilerlibs virtual/libc " | ||
77 | return deps | ||
78 | 69 | ||
79 | BASEDEPENDS = "${@base_dep_prepend(d)}" | 70 | BASEDEPENDS = "" |
71 | BASEDEPENDS_class-target = "${@base_dep_prepend(d)}" | ||
72 | BASEDEPENDS_class-nativesdk = "${@base_dep_prepend(d)}" | ||
80 | 73 | ||
81 | DEPENDS_prepend="${BASEDEPENDS} " | 74 | DEPENDS_prepend="${BASEDEPENDS} " |
82 | 75 | ||
diff --git a/meta/classes/gettext.bbclass b/meta/classes/gettext.bbclass index 0be14246bf..d60a0c12ce 100644 --- a/meta/classes/gettext.bbclass +++ b/meta/classes/gettext.bbclass | |||
@@ -15,5 +15,5 @@ def gettext_oeconf(d): | |||
15 | 15 | ||
16 | DEPENDS_GETTEXT ??= "virtual/gettext gettext-native" | 16 | DEPENDS_GETTEXT ??= "virtual/gettext gettext-native" |
17 | 17 | ||
18 | BASEDEPENDS =+ "${@gettext_dependencies(d)}" | 18 | BASEDEPENDS_append = " ${@gettext_dependencies(d)}" |
19 | EXTRA_OECONF_append = " ${@gettext_oeconf(d)}" | 19 | EXTRA_OECONF_append = " ${@gettext_oeconf(d)}" |