Fix paths in pkg-config file (#556)

pkg-config should be giving absolute paths rather than relative paths.
This commit is contained in:
Jamie Snape
2018-02-02 10:12:34 -05:00
committed by Jesse Beder
parent f5d5604a2c
commit 5d5bb52ec2

View File

@@ -1,5 +1,7 @@
libdir=@LIB_INSTALL_DIR@
includedir=@INCLUDE_INSTALL_ROOT_DIR@
prefix=@CMAKE_INSTALL_PREFIX@
exec_prefix=${prefix}
includedir=${prefix}/@INCLUDE_INSTALL_ROOT_DIR@
libdir=${exec_prefix}/@LIB_INSTALL_DIR@
Name: Yaml-cpp
Description: A YAML parser and emitter for C++