Skip to content

Commit 5d5bb52

Browse files
jamiesnapejbeder
authored andcommittedFeb 2, 2018
Fix paths in pkg-config file (#556)
pkg-config should be giving absolute paths rather than relative paths.
1 parent f5d5604 commit 5d5bb52

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎yaml-cpp.pc.cmake

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
libdir=@LIB_INSTALL_DIR@
2-
includedir=@INCLUDE_INSTALL_ROOT_DIR@
1+
prefix=@CMAKE_INSTALL_PREFIX@
2+
exec_prefix=${prefix}
3+
includedir=${prefix}/@INCLUDE_INSTALL_ROOT_DIR@
4+
libdir=${exec_prefix}/@LIB_INSTALL_DIR@
35

46
Name: Yaml-cpp
57
Description: A YAML parser and emitter for C++

0 commit comments

Comments
 (0)
Please sign in to comment.