diff options
| author | Olaf Hering <olaf@aepfle.de> | 2012-08-29 15:15:12 +0200 |
|---|---|---|
| committer | Richard W.M. Jones <rjones@redhat.com> | 2012-08-29 16:42:51 +0100 |
| commit | 044c5b26d7ed1bde70cbeacb0ffa3f8bcb932092 (patch) | |
| tree | f779afef59191227a9ddbbe2c6c39832d4ce1c80 /tests/mount-local | |
| parent | 684efb3706795bdd8cb0d4c026067fb4d70e23d1 (diff) | |
| download | libguestfs-044c5b26d7ed1bde70cbeacb0ffa3f8bcb932092.tar.gz libguestfs-044c5b26d7ed1bde70cbeacb0ffa3f8bcb932092.tar.xz libguestfs-044c5b26d7ed1bde70cbeacb0ffa3f8bcb932092.zip | |
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>
Diffstat (limited to 'tests/mount-local')
| -rw-r--r-- | tests/mount-local/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mount-local/Makefile.am b/tests/mount-local/Makefile.am index 384eb2de..d0c1cf85 100644 --- a/tests/mount-local/Makefile.am +++ b/tests/mount-local/Makefile.am @@ -34,7 +34,7 @@ test_parallel_mount_local_CFLAGS = \ $(FUSE_CFLAGS) \ $(WARN_CFLAGS) $(WERROR_CFLAGS) test_parallel_mount_local_LDADD = \ - $(FUSE_LIBS) -lulockmgr \ + $(FUSE_LIBS) \ $(top_builddir)/src/libguestfs.la endif |
