From patchwork Thu Aug 25 14:17:40 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeff Layton X-Patchwork-Id: 9299433 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 09BF6607D8 for ; Thu, 25 Aug 2016 14:19:37 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id EFFF12928B for ; Thu, 25 Aug 2016 14:19:36 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id E4AA329344; Thu, 25 Aug 2016 14:19:36 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 2EA902928B for ; Thu, 25 Aug 2016 14:19:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751754AbcHYOTf (ORCPT ); Thu, 25 Aug 2016 10:19:35 -0400 Received: from hr2.samba.org ([144.76.82.148]:30026 "EHLO hr2.samba.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757550AbcHYOSE (ORCPT ); Thu, 25 Aug 2016 10:18:04 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=samba.org; s=42627210; h=Message-Id:Date:Cc:To:From; bh=murXZUXAq3BWPBH5WSr1+dKjNS8LMov41W57h0o1nAA=; b=kdvngVvdlCH493/tGVsT+wLqDIt5lysgXGIojzS/IVbslg43YIgnr97VRz3xTFn/8tRsNOPUrPyi8f43slN5Bgqfab4J8ahXzI//UDb1r58tzPZJwdz1l6jlpG3p2t2ivZgixphrLvcfDWYhnPYULr6PZSU113ISBAdjotd6O3A=; Received: from [127.0.0.2] (localhost [127.0.0.1]) by hr2.samba.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim) id 1bcvTp-0001dI-Dj; Thu, 25 Aug 2016 14:18:05 +0000 From: Jeff Layton To: linux-cifs@vger.kernel.org Cc: samba-technical@lists.samba.org, jfdey@fredhutch.org Subject: [cifs-utils PATCHv2 1/6] aclocal: fix typo in idmap.m4 Date: Thu, 25 Aug 2016 10:17:40 -0400 Message-Id: <1472134665-4014-2-git-send-email-jlayton@samba.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1472134665-4014-1-git-send-email-jlayton@samba.org> References: <1472134665-4014-1-git-send-email-jlayton@samba.org> Sender: linux-cifs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-cifs@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP We really don't want to do the same check twice. Signed-off-by: Jeff Layton --- aclocal/idmap.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aclocal/idmap.m4 b/aclocal/idmap.m4 index 3ccdae3ab968..4e16a46568a1 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"