mirror of
https://git.yoctoproject.org/poky
synced 2026-04-22 15:32:14 +02:00
sqlite3: fix multiple provider warning
Use ${PN} to replace the original hardcode name in recipe PACKAGES line
This fixes multiple provider warning of sqlite3 (sqlite3 and
sqlite3-nativesdk)
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
This commit is contained in:
committed by
Richard Purdie
parent
9c1d256783
commit
43938f11af
@@ -3,7 +3,7 @@
|
||||
#
|
||||
|
||||
DESCRIPTION = "Target packages for the standalone Moblin SDK"
|
||||
PR = "r6"
|
||||
PR = "r7"
|
||||
LICENSE = "MIT"
|
||||
ALLOW_EMPTY = "1"
|
||||
|
||||
@@ -26,7 +26,7 @@ RDEPENDS_${PN} = "\
|
||||
libebook-dev \
|
||||
libglade-dev \
|
||||
libxi-dev \
|
||||
libsqlite-dev \
|
||||
libsqlite3-dev \
|
||||
clutter-1.0-dev \
|
||||
nbtk-dev \
|
||||
mutter-dev \
|
||||
|
||||
@@ -22,12 +22,12 @@ export config_TARGET_LINK = "${CCLD}"
|
||||
export config_TARGET_CFLAGS = "${CFLAGS}"
|
||||
export config_TARGET_LFLAGS = "${LDFLAGS}"
|
||||
|
||||
PACKAGES = "libsqlite libsqlite-dev libsqlite-doc sqlite3 sqlite3-dbg"
|
||||
FILES_sqlite3 = "${bindir}/*"
|
||||
FILES_libsqlite = "${libdir}/*.so.*"
|
||||
FILES_libsqlite-dev = "${libdir}/*.a ${libdir}/*.la ${libdir}/*.so \
|
||||
PACKAGES = "lib${PN} lib${PN}-dev lib${PN}-doc ${PN} ${PN}-dbg"
|
||||
FILES_${PN} = "${bindir}/*"
|
||||
FILES_lib${PN} = "${libdir}/*.so.*"
|
||||
FILES_lib${PN}-dev = "${libdir}/*.a ${libdir}/*.la ${libdir}/*.so \
|
||||
${libdir}/pkgconfig ${includedir}"
|
||||
FILES_libsqlite-doc = "${docdir} ${mandir} ${infodir}"
|
||||
AUTO_LIBNAME_PKGS = "libsqlite"
|
||||
FILES_lib${PN}-doc = "${docdir} ${mandir} ${infodir}"
|
||||
AUTO_LIBNAME_PKGS = "lib${PN}"
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
require sqlite3.inc
|
||||
|
||||
PR = "r0"
|
||||
PR = "r1"
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
#
|
||||
|
||||
DESCRIPTON = "Gnome Mobile And Embedded Software Development Kit for OpenedHand Poky"
|
||||
PR = "r6"
|
||||
PR = "r7"
|
||||
|
||||
ALLOW_EMPTY = "1"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
#
|
||||
|
||||
DESCRIPTON = "Gnome Mobile And Embedded Software Development Kit for OpenedHand Poky"
|
||||
PR = "r9"
|
||||
PR = "r10"
|
||||
|
||||
ALLOW_EMPTY = "1"
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ SDK-GMAE = " \
|
||||
libecal-dev \
|
||||
libebook-dev \
|
||||
libxi-dev \
|
||||
libsqlite-dev \
|
||||
libsqlite3-dev \
|
||||
"
|
||||
|
||||
# TODO: gvfs-dev, mission-control
|
||||
|
||||
Reference in New Issue
Block a user