From 2236900ff06efba1d84a1a1685f7c562eb862108 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 30 Jun 2009 13:11:05 +0200 Subject: [PATCH] libblkid: fix $libdir in blkid.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/blkid/blkid.pc.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shlibs/blkid/blkid.pc.in b/shlibs/blkid/blkid.pc.in index 5d58c3e1..f5debbbc 100644 --- a/shlibs/blkid/blkid.pc.in +++ b/shlibs/blkid/blkid.pc.in @@ -1,6 +1,6 @@ prefix=@prefix@ exec_prefix=@exec_prefix@ -libdir=@libdir@ +libdir=@usrlibexecdir@ includedir=@includedir@ Name: blkid -- 2.39.5