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.

29 lines
850 B

  1. From cfd97bbbca6afddb1bcedb407cb21127d7cb5d53 Mon Sep 17 00:00:00 2001
  2. From: Hank Leininger <hlein@korelogic.com>
  3. Date: Mon, 8 Oct 2018 19:08:51 -0600
  4. Subject: [PATCH 8/9] Use a more standard path for pkg-config files.
  5. The Linuxes I've checked all seem to use /usr/{,local/}lib*/pkgconfig,
  6. not /usr/libdata/. I think FreeBSD does use /usr/libdata/ but also
  7. supports /usr/lib*/pkgconfig, although I have not tested this change
  8. on a FreeBSD system.
  9. ---
  10. Makefile.am | 2 +-
  11. 1 file changed, 1 insertion(+), 1 deletion(-)
  12. diff --git a/Makefile.am b/Makefile.am
  13. index 37f0849..4090817 100644
  14. --- a/Makefile.am
  15. +++ b/Makefile.am
  16. @@ -1,7 +1,7 @@
  17. ACLOCAL_AMFLAGS = -I m4
  18. SUBDIRS = src/lib example tests
  19. -pkgconfigdir = $(prefix)/libdata/pkgconfig
  20. +pkgconfigdir = $(libdir)/pkgconfig
  21. pkgconfig_DATA = libndpi.pc
  22. EXTRA_DIST = autogen.sh
  23. --
  24. 2.19.1