diff options
author | Richard Purdie <richard@openedhand.com> | 2007-11-30 12:18:43 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-11-30 12:18:43 +0000 |
commit | 2f0918e948cb8f200be22b5f4bcda0aa5f3ac2bf (patch) | |
tree | c37cecab375a67c139857c33145fd639ac023dcd /meta | |
parent | 412acf73059b353a0fd7a21b6345ec0147fd5e7c (diff) | |
download | openembedded-core-2f0918e948cb8f200be22b5f4bcda0aa5f3ac2bf.tar.gz openembedded-core-2f0918e948cb8f200be22b5f4bcda0aa5f3ac2bf.tar.bz2 openembedded-core-2f0918e948cb8f200be22b5f4bcda0aa5f3ac2bf.zip |
poky.conf: Allow insane to be disabled from local.conf
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3279 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/distro/poky.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/conf/distro/poky.conf b/meta/conf/distro/poky.conf index a6ab5cf939..9069e0c8a4 100644 --- a/meta/conf/distro/poky.conf +++ b/meta/conf/distro/poky.conf @@ -8,7 +8,8 @@ DISTRO_VERSION = "3.0+snapshot-${DATE}" MAINTAINER = "OpenedHand <poky@openedhand.com>" PACKAGE_CLASSES ?= "package_ipk" -INHERIT = "${PACKAGE_CLASSES} debian multimachine poky devshell insane" +INHERIT_INSANE ?= "insane" +INHERIT = "${PACKAGE_CLASSES} debian multimachine poky devshell ${INHERIT_INSANE}" # For some reason, this doesn't work # TARGET_OS ?= "linux" # TARGET_VENDOR ?= "-poky" |