From a66af8a4b35a0dee81cd47dbc7d25f4694447ffb Mon Sep 17 00:00:00 2001 From: David Hardeman Date: Mon, 8 Dec 2014 11:12:42 -0500 Subject: gssd: fix gssd build flags The tirpc variable is another library to add, not additional flags. I'm guessing the reason this hasn't caused problems is that it only shows up with static libraries. Signed-off-by: David Hardeman Signed-off-by: Steve Dickson --- utils/gssd/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/gssd/Makefile.am b/utils/gssd/Makefile.am index 693fb0b..62a70af 100644 --- a/utils/gssd/Makefile.am +++ b/utils/gssd/Makefile.am @@ -45,8 +45,8 @@ gssd_SOURCES = \ write_bytes.h gssd_LDADD = ../../support/nfs/libnfs.a \ - $(RPCSECGSS_LIBS) $(KRBLIBS) $(GSSAPI_LIBS) -gssd_LDFLAGS = $(KRBLDFLAGS) $(LIBTIRPC) + $(RPCSECGSS_LIBS) $(KRBLIBS) $(GSSAPI_LIBS) $(LIBTIRPC) +gssd_LDFLAGS = $(KRBLDFLAGS) gssd_CFLAGS = $(AM_CFLAGS) $(CFLAGS) \ $(RPCSECGSS_CFLAGS) $(KRBCFLAGS) $(GSSAPI_CFLAGS) -- cgit