summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/sqlite/sqlite3.inc
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2012-10-27 16:48:17 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-02 16:18:28 +0000
commit5ddf8570a113035f40fa8f203c3ac33582e2c745 (patch)
treed12af46a0471f85b017597aee644a8308d6645fb /meta/recipes-support/sqlite/sqlite3.inc
parent60c3bd43949e9aa23af6f74656eb9a64b891bda6 (diff)
downloadpoky-5ddf8570a113035f40fa8f203c3ac33582e2c745.tar.gz
recipes-support: replace virtclass-native(sdk) with class-native(sdk)
The overrides virtclass-native and virtclass-nativesdk are deprecated, which should be replaced by class-native and class-nativesdk. NOTE: There were 2 errors in libcap.inc, the BUILD_LDFLAGS_virtclass_native should be BUILD_LDFLAGS_virtclass-native (the "_" should be "-"), otherwise it doesn't work, and the value was: "-Wl,rpath=...", this is incorrect, it shoudl be: "-Wl,-rpath=..." (lacked a - ), but we don't need this line, since it is already in the default BUILD_LDFLAGS. Remove it and we don't need to bump the PR since we just removed a unused line. [YOCTO #3297] (From OE-Core rev: cafb550fe9034754933f1708446dde155dcc3d51) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/sqlite/sqlite3.inc')
-rw-r--r--meta/recipes-support/sqlite/sqlite3.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/sqlite/sqlite3.inc b/meta/recipes-support/sqlite/sqlite3.inc
index 70841f88cb..e94c6ef8f0 100644
--- a/meta/recipes-support/sqlite/sqlite3.inc
+++ b/meta/recipes-support/sqlite/sqlite3.inc
@@ -2,13 +2,13 @@ DESCRIPTION = "An Embeddable SQL Database Engine"
2HOMEPAGE = "http://www.sqlite.org" 2HOMEPAGE = "http://www.sqlite.org"
3SECTION = "libs" 3SECTION = "libs"
4DEPENDS = "readline ncurses" 4DEPENDS = "readline ncurses"
5DEPENDS_virtclass-native = "" 5DEPENDS_class-native = ""
6LICENSE = "PD" 6LICENSE = "PD"
7 7
8inherit autotools pkgconfig 8inherit autotools pkgconfig
9 9
10EXTRA_OECONF = "--disable-tcl --enable-shared --enable-threadsafe" 10EXTRA_OECONF = "--disable-tcl --enable-shared --enable-threadsafe"
11EXTRA_OECONF_virtclass-native = "--disable-tcl --enable-shared --enable-threadsafe --disable-readline --enable-tempstore" 11EXTRA_OECONF_class-native = "--disable-tcl --enable-shared --enable-threadsafe --disable-readline --enable-tempstore"
12export config_BUILD_CC = "${BUILD_CC}" 12export config_BUILD_CC = "${BUILD_CC}"
13export config_BUILD_CFLAGS = "${BUILD_CFLAGS}" 13export config_BUILD_CFLAGS = "${BUILD_CFLAGS}"
14export config_BUILD_LIBS = "${BUILD_LDFLAGS}" 14export config_BUILD_LIBS = "${BUILD_LDFLAGS}"