diff options
author | Jeff Layton <jlayton@samba.org> | 2016-07-12 16:53:25 -0400 |
---|---|---|
committer | Jeff Layton <jlayton@samba.org> | 2016-07-12 16:57:32 -0400 |
commit | bbbf7133aec555c5d27ee3163d6045ecfc4673d9 (patch) | |
tree | a72dba9b8bb9c63ab7d78dd1a18ca19d5404f6c4 | |
parent | 62e73b1879077790e930e68f004fe3fbe997f84d (diff) | |
download | cifs-utils-bbbf7133aec555c5d27ee3163d6045ecfc4673d9.tar.gz cifs-utils-bbbf7133aec555c5d27ee3163d6045ecfc4673d9.tar.bz2 cifs-utils-bbbf7133aec555c5d27ee3163d6045ecfc4673d9.zip |
aclocal: fix typo in idmap.m4
We really don't want to do the same check twice.
Signed-off-by: Jeff Layton <jlayton@samba.org>
-rw-r--r-- | aclocal/idmap.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aclocal/idmap.m4 b/aclocal/idmap.m4 index 3ccdae3..4e16a46 100644 --- a/aclocal/idmap.m4 +++ b/aclocal/idmap.m4 @@ -19,7 +19,7 @@ if test $enable_cifsidmap != "no" -o $enable_cifsacl != "no"; then ]) fi -if test $enable_cifsacl != "no" -o $enable_cifsacl != "no"; then +if test $enable_cifsidmap != "no" -o $enable_cifsacl != "no"; then ac_wbc_save_LDFLAGS="$LDFLAGS" ac_wbc_save_LIBS="$LIBS" LDFLAGS="$LDFLAGS $WBCLIENT_LIBS" |