diff options
author | David Hardeman <david@hardeman.nu> | 2014-12-08 11:12:42 -0500 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2014-12-08 11:12:42 -0500 |
commit | a66af8a4b35a0dee81cd47dbc7d25f4694447ffb (patch) | |
tree | 92526908724bafd8e673ffa2fa89ec1a1fe47c4d | |
parent | 0fbf91a4fd904724ce031d73d282608104c84eac (diff) | |
download | nfs-utils-a66af8a4b35a0dee81cd47dbc7d25f4694447ffb.tar.gz nfs-utils-a66af8a4b35a0dee81cd47dbc7d25f4694447ffb.tar.xz nfs-utils-a66af8a4b35a0dee81cd47dbc7d25f4694447ffb.zip |
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 <david@hardeman.nu>
Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r-- | utils/gssd/Makefile.am | 4 |
1 files 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) |