1
0
mirror of https://github.com/gluster/glusterfs.git synced 2026-02-05 15:48:40 +01:00

build: Fix libglusterd Makefile target

* Fix libglusterd.la target path in cli/src/Makefile.am

* Like libglusterfs, libgfxdr and libgfrpc, libglusterd is also
  expected to be ready by the time xlators/mgmt/glusterd sources
  are compiled. Therefore this change removes the additional
  mentioning of libglusterd.la target in Makefile.am

Change-Id: I1b787316cfb6cd7487f49e661490b9788a0b80b3
Updates: bz#1193929
Signed-off-by: Anoop C S <anoopcs@redhat.com>
This commit is contained in:
Anoop C S
2019-08-29 14:27:12 +05:30
committed by Amar Tumballi
parent 600ba94183
commit f81bf47d1c
2 changed files with 1 additions and 5 deletions

View File

@@ -29,7 +29,7 @@ CLEANFILES =
$(top_builddir)/libglusterfs/src/libglusterfs.la:
$(MAKE) -C $(top_builddir)/libglusterfs/src/ all
$(top_builddir)/libglusterfs/src/libglusterd.la:
$(top_builddir)/libglusterd/src/libglusterd.la:
$(MAKE) -C $(top_builddir)/libglusterd/src/ all
install-data-hook:

View File

@@ -27,7 +27,6 @@ glusterd_la_SOURCES = glusterd.c glusterd-handler.c glusterd-sm.c \
glusterd-reset-brick.c glusterd-shd-svc.c glusterd-shd-svc-helper.c \
glusterd-gfproxyd-svc.c glusterd-gfproxyd-svc-helper.c glusterd-ganesha.c
glusterd_la_LIBADD = $(top_builddir)/libglusterfs/src/libglusterfs.la \
$(top_builddir)/libglusterd/src/libglusterd.la \
$(top_builddir)/rpc/xdr/src/libgfxdr.la \
@@ -76,6 +75,3 @@ if GF_INSTALL_GLUSTERD_WORKDIR
(ln -sf $(DESTDIR)$(GLUSTERD_WORKDIR) $(sysconfdir)/glusterd) || true;
endif
endif
$(top_builddir)/libglusterfs/src/libglusterd.la:
$(MAKE) -C $(top_builddir)/libglusterd/src/ all