diff options
author | Jeff Layton <jlayton@samba.org> | 2010-04-04 09:51:31 -0400 |
---|---|---|
committer | Jeff Layton <jlayton@samba.org> | 2010-04-04 09:51:31 -0400 |
commit | 0c287aa5ce5def56d901716e58943f3e9825e3a3 (patch) | |
tree | 9a5f5fe059a31ce41e6449a679fc29830215a8e3 /Makefile.am | |
parent | 16c29a1920e48e7480595edd0ae96094d6e220c8 (diff) | |
download | cifs-utils-0c287aa5ce5def56d901716e58943f3e9825e3a3.tar.gz cifs-utils-0c287aa5ce5def56d901716e58943f3e9825e3a3.tar.bz2 cifs-utils-0c287aa5ce5def56d901716e58943f3e9825e3a3.zip |
autotools: don't link mount.cifs against krb5 library
mount.cifs is being linked against the krb5 library. Fix it so that
that doesn't happen.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 605206e..9cf25f6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -11,7 +11,7 @@ man_MANS = mount.cifs.8 if CONFIG_CIFSUPCALL sbin_PROGRAMS = cifs.upcall cifs_upcall_SOURCES = cifs.upcall.c data_blob.c asn1.c spnego.c util.c -cifs_upcall_LDADD = -ltalloc -lkrb5 -lkeyutils +cifs_upcall_LDADD = -ltalloc -lkeyutils @KRB5_LDADD@ man_MANS += cifs.upcall.8 endif |