diff options
author | Jeff Layton <jlayton@samba.org> | 2012-01-10 18:30:56 -0500 |
---|---|---|
committer | Jeff Layton <jlayton@samba.org> | 2012-01-10 13:34:01 -0500 |
commit | cee919c2f3fb7b96518b800680664a15a6551d93 (patch) | |
tree | b517c01d26230a2f99013506f631a5f6519c755a | |
parent | 2a9738cefaf8a9496ff0683e18357b3548da0b28 (diff) | |
download | cifs-utils-cee919c2f3fb7b96518b800680664a15a6551d93.tar.gz cifs-utils-cee919c2f3fb7b96518b800680664a15a6551d93.tar.bz2 cifs-utils-cee919c2f3fb7b96518b800680664a15a6551d93.zip |
get/setcifsacl: don't link in -lkeyutils
These binaries don't use keys API at all. There's no need to link in
the keys library.
Reported-by: Frédéric L. W. Meunier <fredlwm@fredlwm.net>
Signed-off-by: Jeff Layton <jlayton@samba.org>
Acked-by: Shirish Pargaonkar <shirishpargaonkar@gmail.com>
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index cb20442..038cd0e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -55,12 +55,12 @@ endif if CONFIG_CIFSACL bin_PROGRAMS += getcifsacl getcifsacl_SOURCES = getcifsacl.c -getcifsacl_LDADD = -lkeyutils $(WINB_LDADD) +getcifsacl_LDADD = $(WINB_LDADD) man_MANS += getcifsacl.1 bin_PROGRAMS += setcifsacl setcifsacl_SOURCES = setcifsacl.c -setcifsacl_LDADD = -lkeyutils $(WINB_LDADD) +setcifsacl_LDADD = $(WINB_LDADD) man_MANS += setcifsacl.1 endif |