You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
709 B

  1. Pkg-config definitions commonly make use of ${exec_prefix} and ${prefix}
  2. when defining libdir and includedir, respectively. OpenWrt, for example,
  3. relies on this when it adjusts things for cross compiling.
  4. Signed-off-by: W. Michael Petullo <mike@flyn.org>
  5. ---
  6. src/libselinux.pc.in | 4 ++--
  7. 1 file changed, 2 insertions(+), 2 deletions(-)
  8. diff --git a/src/libselinux.pc.in b/src/libselinux.pc.in
  9. index 7c66b1fa..d9d58125 100644
  10. --- a/src/libselinux.pc.in
  11. +++ b/src/libselinux.pc.in
  12. @@ -1,7 +1,7 @@
  13. prefix=@prefix@
  14. exec_prefix=${prefix}
  15. -libdir=@libdir@
  16. -includedir=@includedir@
  17. +libdir=${exec_prefix}/lib
  18. +includedir=${prefix}/include
  19. Name: libselinux
  20. Description: SELinux utility library
  21. --
  22. 2.26.2