summaryrefslogtreecommitdiffstats
path: root/recipes-core/openjdk/openjdk-common.inc
diff options
context:
space:
mode:
authorMario Domenech Goulart <mario@ossystems.com.br>2015-08-18 17:14:30 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2015-08-18 18:54:17 -0300
commit24b98ac3a6ca7fadfba24709aac8d0b71316e299 (patch)
treec5658da851a712e48e14483b9c6ae5cb719f7f40 /recipes-core/openjdk/openjdk-common.inc
parent15ed9662e26ed4ac8d843fb9d2335a49a9c03088 (diff)
downloadmeta-java-24b98ac3a6ca7fadfba24709aac8d0b71316e299.tar.gz
Avoid parse time errors due to dependency on x11, for distros without x11
BitBake raises some errors when processing recipes that depend on x11 for distros that don't have x11 in DISTRO_FEATURES. To work around that issue, REQUIRED_DISTRO_FEATURES = "x11" (from distro_features_check.bbclass) has been set for the following recipes: * cacao * classpath * jamvm * openjdk-6-release * openjdk-7-release That makes BitBake skip those recipes during the cache generation (they'd still be parsed, but ignored). Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-core/openjdk/openjdk-common.inc')
-rw-r--r--recipes-core/openjdk/openjdk-common.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes-core/openjdk/openjdk-common.inc b/recipes-core/openjdk/openjdk-common.inc
index dc26522..e3e597a 100644
--- a/recipes-core/openjdk/openjdk-common.inc
+++ b/recipes-core/openjdk/openjdk-common.inc
@@ -17,7 +17,9 @@ DEPENDS_append_libc-uclibc = " virtual/libiconv "
17# because structure sizes and/or alignment may differ. 17# because structure sizes and/or alignment may differ.
18DEPENDS_append = " qemu-native " 18DEPENDS_append = " qemu-native "
19 19
20inherit java autotools gettext qemu pkgconfig 20inherit java autotools gettext qemu pkgconfig distro_features_check
21
22REQUIRED_DISTRO_FEATURES = "x11"
21 23
22# OpenJDK uses slightly different names for certain arches. We need to know 24# OpenJDK uses slightly different names for certain arches. We need to know
23# this to create some files which are expected by the build. 25# this to create some files which are expected by the build.