Use EXCLUDE_FROM_WORLD in native.oeclass, cross.oeclass, and image_ipk.oeclass.
authorChris Larson <clarson@kergoth.com>
Wed, 1 Dec 2004 10:17:52 +0000 (10:17 +0000)
committerChris Larson <clarson@kergoth.com>
Wed, 1 Dec 2004 10:17:52 +0000 (10:17 +0000)
BKrev: 41ad9a50ojh5lYMpR1q6iCNyth_GRA

classes/cross.oeclass
classes/image_ipk.oeclass
classes/native.oeclass

index 1418035..6bdc5bf 100644 (file)
@@ -1,3 +1,7 @@
+# Cross packages are built indirectly via dependency,
+# no need for them to be a direct target of 'world'
+EXCLUDE_FROM_WORLD = "1"
+
 PACKAGES = ""
 
 HOST_ARCH = "${BUILD_ARCH}"
index c9c3980..2ae3d5c 100644 (file)
@@ -1,5 +1,8 @@
 inherit rootfs_ipk
 
+# Images are generally built explicitly, do not need to be part of world.
+EXCLUDE_FROM_WORLD = "1"
+
 USE_DEVFS ?= "0"
 
 DEPENDS += "makedevs-native"
index 49e70a5..93b2823 100644 (file)
@@ -1,5 +1,9 @@
 inherit base
 
+# Native packages are built indirectly via dependency,
+# no need for them to be a direct target of 'world'
+EXCLUDE_FROM_WORLD = "1"
+
 PACKAGES = ""
 
 TARGET_ARCH = "${BUILD_ARCH}"