From 8000be0ee9254487d2c24f04868cbaf68bf65d93 Mon Sep 17 00:00:00 2001 From: Clément Péron Date: Wed, 7 Dec 2022 12:27:30 +0100 Subject: proj: avoid leaking host path in libproj MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When compiling libproj for a SDK, the proj-targets.cmake generated contains the host path in the INTERFACE_LINK_LIBRARIES. This path comes from the sqlite3 libraries that gives the full path to the sqlite3 library at build time. Force the libproj to link with "sqlite3" instead of a full path. Signed-off-by: Clément Péron Signed-off-by: Khem Raj --- meta-oe/recipes-navigation/proj/proj_9.1.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-navigation/proj/proj_9.1.0.bb b/meta-oe/recipes-navigation/proj/proj_9.1.0.bb index 818c87bf04..218f083969 100644 --- a/meta-oe/recipes-navigation/proj/proj_9.1.0.bb +++ b/meta-oe/recipes-navigation/proj/proj_9.1.0.bb @@ -10,7 +10,7 @@ SRC_URI[sha256sum] = "81b2239b94cad0886222cde4f53cb49d34905aad2a1317244a0c30a553 inherit cmake lib_package -EXTRA_OECMAKE = "-DBUILD_TESTING=OFF" +EXTRA_OECMAKE = "-DBUILD_TESTING=OFF -DSQLITE3_LIBRARY:STRING=sqlite3" FILES:${PN} += "${datadir}/proj" -- cgit v1.2.3-54-g00ecf