diff options
author | Karel Zak <kzak@redhat.com> | 2009-06-30 13:18:26 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2009-06-30 14:28:31 +0200 |
commit | 3998595cac03a1e4936806169fb74f6af26d999e (patch) | |
tree | 31856a3a8a6669f9a090ab810023921162fcf508 /shlibs/uuid | |
parent | 2236900ff06efba1d84a1a1685f7c562eb862108 (diff) | |
download | util-linux-old-3998595cac03a1e4936806169fb74f6af26d999e.tar.gz |
libuuid: fix $libdir in uuid.pc
The -L<dir> 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 <kzak@redhat.com>
Diffstat (limited to 'shlibs/uuid')
-rw-r--r-- | shlibs/uuid/uuid.pc.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 |