[oe-commits] Paul Menzel : libfso-qt-embedded: Do not override `DEPENDS`

git version control git at git.openembedded.org
Thu Jun 23 20:27:53 UTC 2011


Module: openembedded.git
Branch: master
Commit: 99cad4f2f283149eb25be6723bfdc5ec117aafba
URL:    http://git.openembedded.org/?p=openembedded.git&a=commit;h=99cad4f2f283149eb25be6723bfdc5ec117aafba

Author: Paul Menzel <paulepanter at users.sourceforge.net>
Date:   Wed Jun 22 23:41:38 2011 +0200

libfso-qt-embedded: Do not override `DEPENDS`

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 <paulepanter at users.sourceforge.net>
Acked-by: Simon Busch <morphis at gravedo.de>

---

 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"





More information about the Openembedded-commits mailing list