From patchwork Wed Jun 22 22:51:18 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: libfso-qt-embedded: Do not override `DEPENDS` Date: Wed, 22 Jun 2011 22:51:18 -0000 From: Paul Menzel X-Patchwork-Id: 6379 Message-Id: <1308783078.21159.17.camel@mattotaupa> To: openembedded-devel@lists.openembedded.org Date: Wed, 22 Jun 2011 23:41:38 +0200 Using `=` instead of `+=` overrides the dependencies declared in `libfso-qt.inc`. Task configure therefore fails with the following errors. 1. `fso-specs` is not found. checking for SPECS... no configure: error: Package requirements (fso-specs >= 2011.06.01.1) were not met: No package 'fso-specs' found 2. `qfsodbusxml2cpp` is not found. checking for QFSODBUSXML2CPP... no configure: error: Package requirements (qfsodbusxml2cpp >= 0.7.0) were not met: No package 'qfsodbusxml2cpp' found Using `+=` solves these problems and is built tested using `minimal` for `MACHINE = "beagleboard"`. Signed-off-by: Paul Menzel CC: Simon Busch Acked-by: Simon Busch --- recipes/freesmartphone/libfso-qt-embedded_git.bb | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/recipes/freesmartphone/libfso-qt-embedded_git.bb b/recipes/freesmartphone/libfso-qt-embedded_git.bb index 647f439..641cf8d 100644 --- a/recipes/freesmartphone/libfso-qt-embedded_git.bb +++ b/recipes/freesmartphone/libfso-qt-embedded_git.bb @@ -2,5 +2,5 @@ require libfso-qt.inc PR = "${INC_PR}.0" -DEPENDS = "qt4-embedded" +DEPENDS += "qt4-embedded" EXTRA_OECONF_append = "--enable-qt-embedded"