1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Helmut Grohne <helmut@subdivi.de>
Date: Fri, 14 Oct 2016 08:25:12 +0200
Subject: move pkg-config file to /usr/share/pkgconfig
During cross compilation /usr/lib/pkgconfig is not considered.
Bug-Debian: https://bugs.debian.org/840717
---
Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index 2dce7c4..626119e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -6,7 +6,7 @@ if WITH_MANUAL
SUBDIRS+= doc
endif
-pkgconfigdir= $(libdir)/pkgconfig
+pkgconfigdir= $(datadir)/pkgconfig
pkgconfig_DATA= libquvi-scripts-0.9.pc
.PHONY: doc test stamp_scripts ChangeLog VERSION
|