[Openembedded-users] Patch for libsndfile recipe

Charles Manning manningc2 at actrix.gen.nz
Wed Aug 25 21:23:26 UTC 2010


There are two DEPENDS= in this recipe. The second one wipes out the sqlite3 
dependency which causes a build failure if sqlite3 has not been built yet.

That caused a build of omap3-console-image to fail.

This patch fixes this problem.


--- a/recipes/libsndfile/libsndfile1_1.0.21.bb
+++ b/recipes/libsndfile/libsndfile1_1.0.21.bb
@@ -10,7 +10,7 @@ SRC_URI 
= "http://www.mega-nerd.com/libsndfile/files/libsndfile-${PV}.tar.gz;nam
 SRC_URI[libsndfile1021targz.md5sum] = "880a40ec636ab2185b97f8927299b292"
 SRC_URI[libsndfile1021targz.sha256sum] 
= "7e9083a2551ff347276d82cdb61f2b4f9cd137c0b76433800e991583ded8ea67"
 
-DEPENDS = "libsamplerate0"
+DEPENDS += " libsamplerate0"
 
 S = "${WORKDIR}/libsndfile-${PV}"
 




More information about the Openembedded-users mailing list