From patchwork Tue Apr 24 11:08:18 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 10359267 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 BF38C601BE for ; Tue, 24 Apr 2018 11:08:54 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B13EA28D65 for ; Tue, 24 Apr 2018 11:08:54 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id A595C28D6C; Tue, 24 Apr 2018 11:08:54 +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=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI, 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 4861928D65 for ; Tue, 24 Apr 2018 11:08:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753831AbeDXLIr (ORCPT ); Tue, 24 Apr 2018 07:08:47 -0400 Received: from conuserg-10.nifty.com ([210.131.2.77]:36073 "EHLO conuserg-10.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752932AbeDXLIl (ORCPT ); Tue, 24 Apr 2018 07:08:41 -0400 Received: from pug.e01.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-10.nifty.com with ESMTP id w3OB8LRb013907; Tue, 24 Apr 2018 20:08:22 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-10.nifty.com w3OB8LRb013907 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1524568103; bh=4V87uCz0QDfuzV2Q0sx13FlCKFS1y36ZhIyDnpW4QwM=; h=From:To:Cc:Subject:Date:From; b=k/xORecBtxZkISM653/evqy2j3p8pq7RjSs5JO8vm+yvSFQxZ/X3QnXuB/xGRJVt4 TRhgvRZeGthYp3tWJKUjEH2VtR7Gu6QoWrIS+VAHnEHYOwumv8AGkMrJeeWUmIMzen WwSHVK0tzQBpnG8EdeW4V94VNgU6SV4LxLIPwsLhDgDiPjBFIezVeqpPF1Pa9UI4t/ 6ML7/tJSDl7uyGUm26xk7/8r26MnRu3fL92xFjcCvE6NKxMdbdBzyG5rcu9/mJk2pK sFBBfefGJIhjnPmPgB5gVUw3gAsuJFZXF+6OAuggtzNdbauBr68uolXcVQqpa4D4pr CHrNcfX2Bs9aA== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Mauro Rossi , Masahiro Yamada , linux-kernel@vger.kernel.org Subject: [PATCH] genksyms: fix typo in parse.tab.{c,h} generation rules Date: Tue, 24 Apr 2018 20:08:18 +0900 Message-Id: <1524568099-25206-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Mauro Rossi 'quet' is replaced by 'quiet' in scripts/genksyms/Makefile Signed-off-by: Mauro Rossi Signed-off-by: Masahiro Yamada --- scripts/genksyms/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/genksyms/Makefile b/scripts/genksyms/Makefile index ef0287e..03b7ce9 100644 --- a/scripts/genksyms/Makefile +++ b/scripts/genksyms/Makefile @@ -14,14 +14,14 @@ genksyms-objs := genksyms.o parse.tab.o lex.lex.o # so that 'bison: not found' will be displayed if it is missing. ifeq ($(findstring 1,$(KBUILD_ENABLE_EXTRA_GCC_CHECKS)),) -quiet_cmd_bison_no_warn = $(quet_cmd_bison) +quiet_cmd_bison_no_warn = $(quiet_cmd_bison) cmd_bison_no_warn = $(YACC) --version >/dev/null; \ $(cmd_bison) 2>/dev/null $(obj)/parse.tab.c: $(src)/parse.y FORCE $(call if_changed,bison_no_warn) -quiet_cmd_bison_h_no_warn = $(quet_cmd_bison_h) +quiet_cmd_bison_h_no_warn = $(quiet_cmd_bison_h) cmd_bison_h_no_warn = $(YACC) --version >/dev/null; \ $(cmd_bison_h) 2>/dev/null