From 3998595cac03a1e4936806169fb74f6af26d999e Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 30 Jun 2009 13:18:26 +0200 Subject: [PATCH] libuuid: fix $libdir in uuid.pc The -L gcc option is for directories to be searched for .so/.a files. It means the directory with development stuff. We have devel libs in /usr/lib[64]. The side effect is that pkg-config does not return -L with standard system directories (so make(1) output is more readable and shorter). Signed-off-by: Karel Zak --- shlibs/uuid/uuid.pc.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shlibs/uuid/uuid.pc.in b/shlibs/uuid/uuid.pc.in index 52edee2f..b51282a1 100644 --- a/shlibs/uuid/uuid.pc.in +++ b/shlibs/uuid/uuid.pc.in @@ -1,6 +1,6 @@ prefix=@prefix@ exec_prefix=@exec_prefix@ -libdir=@libdir@ +libdir=@usrlibexecdir@ includedir=@includedir@ Name: uuid -- 2.39.5