Skip to content

Commit

Permalink
Fix "${includedir}" does not refer to any variable
Browse files Browse the repository at this point in the history
The cflags in pkgconfig file is invalid as "${includedir}" expands to nothing so it becomes a bare "-I"
  • Loading branch information
FoxieFlakey authored and likle committed Feb 3, 2024
1 parent 88c9c59 commit 35ee006
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cwalk.pc.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ Name: @PROJECT_NAME@
Description: @CMAKE_PROJECT_DESCRIPTION@
URL: @CMAKE_PROJECT_HOMEPAGE_URL@
Version: @PROJECT_VERSION@
Cflags: -I"${includedir}"
Libs: -L"${prefix}/lib" -lcwalk
Cflags: -I"${prefix}/include"
Libs: -L"${prefix}/lib" -lcwalk

0 comments on commit 35ee006

Please sign in to comment.