From patchwork Mon Aug 22 12:29:20 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeff Layton X-Patchwork-Id: 9293443 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 96EC5608A7 for ; Mon, 22 Aug 2016 12:29:26 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8880428977 for ; Mon, 22 Aug 2016 12:29:26 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 7D39128984; Mon, 22 Aug 2016 12:29:26 +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.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI 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 017572897D for ; Mon, 22 Aug 2016 12:29:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752696AbcHVM3Z (ORCPT ); Mon, 22 Aug 2016 08:29:25 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49624 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752401AbcHVM3Y (ORCPT ); Mon, 22 Aug 2016 08:29:24 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 3A36837E62; Mon, 22 Aug 2016 12:29:24 +0000 (UTC) Received: from tlielax.poochiereds.net (ovpn-116-47.rdu2.redhat.com [10.10.116.47]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u7MCTNMO019328; Mon, 22 Aug 2016 08:29:23 -0400 From: Jeff Layton To: linux-cifs@vger.kernel.org Cc: "Dey, John F" Subject: [cifs-utils PATCH 1/3] aclocal: fix typo in idmap.m4 Date: Mon, 22 Aug 2016 08:29:20 -0400 Message-Id: <1471868962-7312-2-git-send-email-jlayton@samba.org> In-Reply-To: <1471868962-7312-1-git-send-email-jlayton@samba.org> References: <1471868962-7312-1-git-send-email-jlayton@samba.org> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Mon, 22 Aug 2016 12:29:24 +0000 (UTC) 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"