From 83e4a149bd69d13fdd6fd4c80e603e04d15ff8e3 Mon Sep 17 00:00:00 2001 From: Anand Avati Date: Fri, 3 May 2013 05:44:17 -0700 Subject: api: Fix api.so and libgfapi.so build time dependency Not all versions of autoconf handle dependencies expressed as "A: B". Use the xxx_DEPENDENCIES variable to make it version independent Change-Id: Ia0b13399d0bf10995d9845e04cd9eb3ef6518dbe BUG: 953694 Signed-off-by: Anand Avati Reviewed-on: http://review.gluster.org/5118 Reviewed-by: Raghavendra Talur Tested-by: Gluster Build System --- api/src/Makefile.am | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/api/src/Makefile.am b/api/src/Makefile.am index 087523823..8980c021c 100644 --- a/api/src/Makefile.am +++ b/api/src/Makefile.am @@ -14,13 +14,12 @@ libgfapi_la_CPPFLAGS = $(GF_CPPFLAGS) -D__USE_FILE_OFFSET64 \ -I$(top_srcdir)/rpc/rpc-lib/src \ -I$(top_srcdir)/rpc/xdr/src -api.la: libgfapi.la xlator_LTLIBRARIES = api.la xlatordir = $(libdir)/glusterfs/$(PACKAGE_VERSION)/xlator/mount api_la_SOURCES = glfs-master.c - +api_la_DEPENDENCIES = libgfapi.la api_la_LDFLAGS = -module -avoid-version api_la_LIBADD = $(top_builddir)/libglusterfs/src/libglusterfs.la \ $(top_builddir)/rpc/rpc-lib/src/libgfrpc.la \ -- cgit