From: Denys Dmytriyenko Date: Mon, 4 Oct 2010 19:33:51 +0000 (-0400) Subject: sqlite: fix BBCLASSEXTEND breakage X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f503dbde0f2f6e9d4a94f6ab4be1b04dfc99950;p=openembedded.git sqlite: fix BBCLASSEXTEND breakage Old version of sqlite3-native used 'sed' to create sqlite3.h, but the new version uses 'tclsh'. Fix DEPENDS on tcl-native, as target version of 'tcl' is not needed due to --disable-tcl, but native is needed to stage 'tclsh'. Signed-off-by: Denys Dmytriyenko --- diff --git a/recipes/sqlite/sqlite3.inc b/recipes/sqlite/sqlite3.inc index ab7808401c..dfd24d29e9 100644 --- a/recipes/sqlite/sqlite3.inc +++ b/recipes/sqlite/sqlite3.inc @@ -1,9 +1,10 @@ DESCRIPTION = "An Embeddable SQL Database Engine" SECTION = "libs" PRIORITY = "optional" -DEPENDS = "tcl-native readline ncurses" +DEPENDS = "readline ncurses" +DEPENDS_virtclass-native_append = " tcl-native" LICENSE = "PD" -INC_PR = "r1" +INC_PR = "r2" SRC_URI = "http://www.sqlite.org/sqlite-${PV}.tar.gz \ file://libtool.patch"