diff options
author | Richard Purdie <richard@openedhand.com> | 2007-09-02 09:47:41 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-09-02 09:47:41 +0000 |
commit | 47ea9ba7123790f95d535d657809a6027fd400e4 (patch) | |
tree | 0ebf5b74eb44d4caabcfc11db630183feeee7cca | |
parent | 733dc27ecf485a0ec5318534dfbbc9491c08df8f (diff) | |
download | openembedded-core-47ea9ba7123790f95d535d657809a6027fd400e4.tar.gz openembedded-core-47ea9ba7123790f95d535d657809a6027fd400e4.tar.bz2 openembedded-core-47ea9ba7123790f95d535d657809a6027fd400e4.zip |
image.bbclass: Allow partial backwards compatibility
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2646 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/classes/image.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 40402921cf..04e26e4b35 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -2,10 +2,10 @@ inherit rootfs_${IMAGE_PKGTYPE} LICENSE = "MIT" PACKAGES = "" -RDEPENDS = "${IMAGE_INSTALL}" +RDEPENDS += "${IMAGE_INSTALL}" -export IMAGE_BASENAME = "${PN}" -export PACKAGE_INSTALL = "${IMAGE_INSTALL}" +export IMAGE_BASENAME ?= "${PN}" +export PACKAGE_INSTALL ?= "${IMAGE_INSTALL}" # We need to recursively follow RDEPENDS and RRECOMMENDS for images do_rootfs[recrdeptask] += "do_deploy do_populate_staging" |