diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-07-25 10:08:59 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-27 11:54:48 +0100 |
commit | 1c24f36e982e680871bf7a05ac6e820314e19c7c (patch) | |
tree | 398a180a4bb4a37bbb4ca6c569bf1c5003827a0d /meta/recipes-core/dropbear/dropbear.inc | |
parent | 7bdc14b0537afa004830f1f23253b2778bb0e098 (diff) | |
download | openembedded-core-1c24f36e982e680871bf7a05ac6e820314e19c7c.tar.gz openembedded-core-1c24f36e982e680871bf7a05ac6e820314e19c7c.tar.bz2 openembedded-core-1c24f36e982e680871bf7a05ac6e820314e19c7c.zip |
dropbear: don't override DISTRO_TYPE if it is already set
The long term solution is to remove the IMAGE_FEATURE check since images are not allowed to influence recipe compile options.
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta/recipes-core/dropbear/dropbear.inc')
-rw-r--r-- | meta/recipes-core/dropbear/dropbear.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/dropbear/dropbear.inc b/meta/recipes-core/dropbear/dropbear.inc index 1b51e1a588..526a5a045d 100644 --- a/meta/recipes-core/dropbear/dropbear.inc +++ b/meta/recipes-core/dropbear/dropbear.inc @@ -29,7 +29,7 @@ SBINCOMMANDS = "dropbear dropbearkey dropbearconvert" BINCOMMANDS = "dbclient ssh scp" EXTRA_OEMAKE = 'MULTI=1 SCPPROGRESS=1 PROGRAMS="${SBINCOMMANDS} ${BINCOMMANDS}"' -DISTRO_TYPE = "${@base_contains("IMAGE_FEATURES", "debug-tweaks", "debug", "",d)}" +DISTRO_TYPE ?= "${@base_contains("IMAGE_FEATURES", "debug-tweaks", "debug", "",d)}" do_debug_patch() { if [ "${DISTRO_TYPE}" = "debug" ]; then |