Skip to content

Commit

Permalink
Fix paths in pkg-config file (#556)
Browse files Browse the repository at this point in the history
pkg-config should be giving absolute paths rather than relative paths.
  • Loading branch information
jamiesnape authored and jbeder committed Feb 2, 2018
1 parent f5d5604 commit 5d5bb52
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions yaml-cpp.pc.cmake
Original file line number Diff line number Diff line change
@@ -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++
Expand Down

0 comments on commit 5d5bb52

Please sign in to comment.