remove ulockmgr from fuse LDFLAGS

libguestfs fails to build with --enable-fuse on openSuSE 11.4 and
earlier because the included fuse version does not include
libulockmgr.so. configure already used pkgconfig to retrieve the correct
CFLAGS, so there is no need to hardcode -lulockmgr.
With this change the build succeeds again.

Signed-off-by: Olaf Hering <olaf@aepfle.de>
This commit is contained in:
Olaf Hering
2012-08-29 15:15:12 +02:00
committed by Richard W.M. Jones
parent 684efb3706
commit 044c5b26d7
4 changed files with 4 additions and 4 deletions

View File

@@ -86,7 +86,7 @@ mount_local_CFLAGS = \
$(FUSE_CFLAGS) \
$(WARN_CFLAGS) $(WERROR_CFLAGS)
mount_local_LDADD = \
$(FUSE_LIBS) -lulockmgr \
$(FUSE_LIBS) \
$(top_builddir)/src/libguestfs.la
endif