aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRonan Le Martret <ronan.lemartret@iot.bzh>2017-08-28 15:52:06 +0200
committerRonan Le Martret <ronan.lemartret@iot.bzh>2017-08-28 15:52:06 +0200
commit6829eb3ef56e7350bc793e5f54118c06780f1af7 (patch)
tree35b110f8db95d46971bdc5ce99b8223525b0c92e
parent454f835401b01a4c32b845e55eb14a19bb66e9bd (diff)
Fix deb packaging pkgconfig dependency
* dpkg must be use to find the package whose provides the .pc file Change-Id: I475559264c5dd1116e773a6842889cfd230917a0 Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh>
-rw-r--r--cmake/cmake.d/04-extra_targets.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/cmake.d/04-extra_targets.cmake b/cmake/cmake.d/04-extra_targets.cmake
index 4e7921a..d66c87f 100644
--- a/cmake/cmake.d/04-extra_targets.cmake
+++ b/cmake/cmake.d/04-extra_targets.cmake
@@ -75,7 +75,7 @@ foreach (PKG_CONFIG ${PKG_REQUIRED_LIST})
# Only doable within a native environment not under SDK
if( OSRELEASE MATCHES "debian" AND NOT DEFINED ENV{SDKTARGETSYSROOT} AND NOT DEFINED CMAKE_TOOLCHAIN_FILE)
execute_process(
- COMMAND pkg-config --print-provides ${XPREFIX}
+ COMMAND dpkg -S *${XPREFIX}.pc
OUTPUT_VARIABLE TMP_PKG_BIN
)
if(TMP_PKG_BIN)