diff options
author | Emmanuel Dreyfus <manu@netbsd.org> | 2014-09-05 15:11:06 +0200 |
---|---|---|
committer | Harshavardhana <harsha@harshavardhana.net> | 2014-09-05 10:17:48 -0700 |
commit | fa696f2f0b1e50e34d009fb9378c41dc6edcc966 (patch) | |
tree | 74435828bd14a6342742003623e965fdfac20255 /xlators/features/qemu-block | |
parent | fd500d4396f910e4cf759e0fffa4daf4ed24745a (diff) |
Build fix: -lz for qemu-block xlator
LIBZ_LIBS has been changed into ZLIB_LIBS everywhere in the
sources, except in qemu-block xlator. Fix it so that it can
find -lz and link correctly.
BUG: 1129939
Change-Id: I34ded175f056d1a0898804fe602e3d2d2cba27f5
Signed-off-by: Emmanuel Dreyfus <manu@netbsd.org>
Reviewed-on: http://review.gluster.org/8623
Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Harshavardhana <harsha@harshavardhana.net>
Tested-by: Harshavardhana <harsha@harshavardhana.net>
Diffstat (limited to 'xlators/features/qemu-block')
-rw-r--r-- | xlators/features/qemu-block/src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/features/qemu-block/src/Makefile.am b/xlators/features/qemu-block/src/Makefile.am index 801a1c45325..e32fc54605b 100644 --- a/xlators/features/qemu-block/src/Makefile.am +++ b/xlators/features/qemu-block/src/Makefile.am @@ -4,7 +4,7 @@ xlatordir = $(libdir)/glusterfs/$(PACKAGE_VERSION)/xlator/features qemu_block_la_LDFLAGS = -module -avoid-version qemu_block_la_LIBADD = $(top_builddir)/libglusterfs/src/libglusterfs.la \ - $(GLIB_LIBS) $(LIBZ_LIBS) + $(GLIB_LIBS) $(ZLIB_LIBS) qemu_block_la_SOURCES_qemu = \ $(CONTRIBDIR)/qemu/qemu-coroutine.c \ |