summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Duponchelle <mathieu.duponchelle@opencreed.com>2016-10-25 20:00:42 +0200
committerChristoph Lipka <clipka@users.noreply.github.com>2016-11-15 10:16:38 +0900
commit386cc6ceba441e1a37a25bf0e452afbe930a6c18 (patch)
treef6aa5d28973247d106f06c836a6b3b4190f01dfe
parentb2688c1c77d050dcbcaf85e5cd031b30262db935 (diff)
downloadDLT-daemon-386cc6ceba441e1a37a25bf0e452afbe930a6c18.tar.gz
pkg-config: fix library directory.
The install destination might be lib64, and a CMake variable exists that contains this information, CMAKE_INSTALL_LIBDIR.
-rw-r--r--automotive-dlt.pc.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/automotive-dlt.pc.in b/automotive-dlt.pc.in
index 7646f89..d587ea1 100644
--- a/automotive-dlt.pc.in
+++ b/automotive-dlt.pc.in
@@ -17,7 +17,7 @@
prefix=@CMAKE_INSTALL_PREFIX@
exec_prefix=@CMAKE_INSTALL_PREFIX@
-libdir=${exec_prefix}/lib
+libdir=${exec_prefix}/@CMAKE_INSTALL_LIBDIR@
includedir=${exec_prefix}/include
Name: DLT