diff options
author | Koen Kooi <koen@openembedded.org> | 2009-04-18 14:52:56 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-04-18 14:52:56 +0200 |
commit | 735fc3d09982be07c4ba62af618edfa6c1d974ae (patch) | |
tree | 3d9be621b7de64724e34c7739091c65a745794e6 /classes/testlab.bbclass | |
parent | 688025caf55e87687e4ab3eef6bd09f3488b4fe1 (diff) |
testlab bbclass: disable package graphs when ONLINE_PACKAGE_MANAGEMENT != full
Diffstat (limited to 'classes/testlab.bbclass')
-rw-r--r-- | classes/testlab.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/testlab.bbclass b/classes/testlab.bbclass index bb47ee877f..fc923c5112 100644 --- a/classes/testlab.bbclass +++ b/classes/testlab.bbclass @@ -22,7 +22,7 @@ # Needs 'dot', 'opkg-cl' do_testlab() { -if [ -e ${IMAGE_ROOTFS}/etc/opkg ] ; then +if [ -e ${IMAGE_ROOTFS}/etc/opkg ] && [ "${ONLINE_PACKAGE_MANAGEMENT}" = "full" ] ; then TESTLAB_DIR="${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}-testlab" mkdir -p ${TESTLAB_DIR}/ |