diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-26 21:10:45 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-28 14:58:50 +0100 |
commit | 323e2919eb641112f12c7713ee124c4b3e83c475 (patch) | |
tree | 838642d859fd37bd4fe8ee8666860ea3d77784d4 /meta/recipes-support | |
parent | 193f5ea973ce39788eed1391d1395d4b55b41934 (diff) | |
download | poky-323e2919eb641112f12c7713ee124c4b3e83c475.tar.gz |
sqlite3: Fix nativesdk packaging/QA warnings
When building sqlite3-nativesdk, there was a warning about debug files in the
main package. This was due to the order of items in PACKAGES with -dbg after
the main package which breaks an assumption native.bbclass makes. Changing
the order fixes the packaging problem with no change to the normal target
packaging.
(From OE-Core rev: 4f5fdc4dc14d287d301069024ddec9cb65d68f7f)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/sqlite/sqlite3.inc | 2 | ||||
-rw-r--r-- | meta/recipes-support/sqlite/sqlite3_3.7.7.1.bb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/sqlite/sqlite3.inc b/meta/recipes-support/sqlite/sqlite3.inc index 2a52a44175..ece35c54f4 100644 --- a/meta/recipes-support/sqlite/sqlite3.inc +++ b/meta/recipes-support/sqlite/sqlite3.inc | |||
@@ -20,7 +20,7 @@ export config_TARGET_LFLAGS = "${LDFLAGS}" | |||
20 | PKGSUFFIX = "" | 20 | PKGSUFFIX = "" |
21 | PKGSUFFIX_virtclass-nativesdk = "-nativesdk" | 21 | PKGSUFFIX_virtclass-nativesdk = "-nativesdk" |
22 | 22 | ||
23 | PACKAGES = "lib${BPN}${PKGSUFFIX} lib${BPN}${PKGSUFFIX}-dev lib${BPN}${PKGSUFFIX}-doc ${PN} ${PN}-dbg" | 23 | PACKAGES = "lib${BPN}${PKGSUFFIX} lib${BPN}${PKGSUFFIX}-dev lib${BPN}${PKGSUFFIX}-doc ${PN}-dbg ${PN}" |
24 | FILES_${PN} = "${bindir}/*" | 24 | FILES_${PN} = "${bindir}/*" |
25 | FILES_lib${BPN}${PKGSUFFIX} = "${libdir}/*.so.*" | 25 | FILES_lib${BPN}${PKGSUFFIX} = "${libdir}/*.so.*" |
26 | FILES_lib${BPN}${PKGSUFFIX}-dev = "${libdir}/*.a ${libdir}/*.la ${libdir}/*.so \ | 26 | FILES_lib${BPN}${PKGSUFFIX}-dev = "${libdir}/*.a ${libdir}/*.la ${libdir}/*.so \ |
diff --git a/meta/recipes-support/sqlite/sqlite3_3.7.7.1.bb b/meta/recipes-support/sqlite/sqlite3_3.7.7.1.bb index 5651c071d1..fd037804ab 100644 --- a/meta/recipes-support/sqlite/sqlite3_3.7.7.1.bb +++ b/meta/recipes-support/sqlite/sqlite3_3.7.7.1.bb | |||
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=65f0a57ca6928710b418c094b357 | |||
4 | 4 | ||
5 | SRC_URI = "http://www.sqlite.org/sqlite-autoconf-3070701.tar.gz" | 5 | SRC_URI = "http://www.sqlite.org/sqlite-autoconf-3070701.tar.gz" |
6 | S = "${WORKDIR}/sqlite-autoconf-3070701" | 6 | S = "${WORKDIR}/sqlite-autoconf-3070701" |
7 | PR = "r0" | 7 | PR = "r1" |
8 | 8 | ||
9 | SRC_URI[md5sum] = "554026fe7fac47b1cf61c18d5fe43419" | 9 | SRC_URI[md5sum] = "554026fe7fac47b1cf61c18d5fe43419" |
10 | SRC_URI[sha256sum] = "7dcc36b25f7bcbe2938d0ea2baea5b706f0af93473d02a3f612d7ab39e386edf" | 10 | SRC_URI[sha256sum] = "7dcc36b25f7bcbe2938d0ea2baea5b706f0af93473d02a3f612d7ab39e386edf" |