diff options
author | Karel Zak | 2009-02-17 21:28:09 +0100 |
---|---|---|
committer | Karel Zak | 2009-02-17 21:28:09 +0100 |
commit | d06d028a5a5c204ac2504e6bf6aa65a2e3b8aeb5 (patch) | |
tree | 9ad7810ce3f9cfd15b0b20b9969deb59fe50e5bd /mount | |
parent | mount: generic blkid/volume_id wrapper, use blkid_evaluate_* (diff) | |
download | kernel-qcow2-util-linux-d06d028a5a5c204ac2504e6bf6aa65a2e3b8aeb5.tar.gz kernel-qcow2-util-linux-d06d028a5a5c204ac2504e6bf6aa65a2e3b8aeb5.tar.xz kernel-qcow2-util-linux-d06d028a5a5c204ac2504e6bf6aa65a2e3b8aeb5.zip |
build-sys: use pkg-config for blkid and volume_id
It seems that blkid.pc from e2fsprogs has been fixed:
$ pkg-config --libs blkid
-lblkid
and the pkg-config does not return any other extra libraries (such
-luuid or -ldevmapper).
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'mount')
-rw-r--r-- | mount/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mount/Makefile.am b/mount/Makefile.am index 261b8c9aa..b34df3c3b 100644 --- a/mount/Makefile.am +++ b/mount/Makefile.am @@ -84,9 +84,9 @@ endif endif if HAVE_VOLUME_ID -ldadd_common += $(VOLUMEID_LIBS) -ldadd_static += $(VOLUMEID_LIBS_STATIC) -cflags_common += $(VOLUMEID_CFLAGS) +ldadd_common += $(VOLUME_ID_LIBS) +ldadd_static += $(VOLUME_ID_LIBS_STATIC) +cflags_common += $(VOLUME_ID_CFLAGS) endif if HAVE_SELINUX |