diff options
author | Anand Avati <avati@redhat.com> | 2013-05-03 05:44:17 -0700 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2013-06-08 14:54:04 -0700 |
commit | 0f741cec5f031dc1c6e1b96e0f5c35d0f374af4d (patch) | |
tree | 541a27c82b5a25399af185ca14cfb894a1994603 | |
parent | e25cf30a74941b4dc76b6d26b602afec2c1e2c6e (diff) |
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 <avati@redhat.com>
Reviewed-on: http://review.gluster.org/5171
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
-rw-r--r-- | api/src/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/api/src/Makefile.am b/api/src/Makefile.am index 087523823d3..8980c021c89 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 \ |