[oe-commits] Denys Dmytriyenko : sqlite: fix BBCLASSEXTEND breakage

git version control git at git.openembedded.org
Mon Oct 4 19:42:29 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 9f503dbde0f2f6e9d4a94f6ab4be1b04dfc99950
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=9f503dbde0f2f6e9d4a94f6ab4be1b04dfc99950

Author: Denys Dmytriyenko <denis at denix.org>
Date:   Mon Oct  4 15:33:51 2010 -0400

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 <denis at denix.org>

---

 recipes/sqlite/sqlite3.inc |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/recipes/sqlite/sqlite3.inc b/recipes/sqlite/sqlite3.inc
index ab78084..dfd24d2 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"





More information about the Openembedded-commits mailing list