From patchwork Mon Jan 14 03:16:45 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 10761625 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id BEAA991E for ; Mon, 14 Jan 2019 03:16:55 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A3D4728738 for ; Mon, 14 Jan 2019 03:16:55 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 9110D28782; Mon, 14 Jan 2019 03:16:55 +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.9 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,MAILING_LIST_MULTI,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 ED46128738 for ; Mon, 14 Jan 2019 03:16:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726707AbfANDQy (ORCPT ); Sun, 13 Jan 2019 22:16:54 -0500 Received: from conuserg-10.nifty.com ([210.131.2.77]:30387 "EHLO conuserg-10.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726622AbfANDQy (ORCPT ); Sun, 13 Jan 2019 22:16:54 -0500 Received: from grover.tkatk1.zaq.ne.jp (zaqdadce369.zaq.ne.jp [218.220.227.105]) (authenticated) by conuserg-10.nifty.com with ESMTP id x0E3Gm99012581; Mon, 14 Jan 2019 12:16:48 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-10.nifty.com x0E3Gm99012581 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1547435809; bh=BkYj0l8nnCiXjiQPBDT7Zh7zPAzUieILg/MXy6Z6nmE=; h=From:To:Cc:Subject:Date:From; b=RSxemRxi5ONOm4tMl7mE+UfugVGQ6F7x1SF/CR1TPa30FmyYNOaTXbg1uiwfIrvfx nTLcHlC3ulhLdjXcVQeXtPjzlyHMM05P2CPQqGli5EUUBmw57/GNhrRWTKJGP6Jv1S T8cAvThq3jggxE89in+lV/eoHrOB67EtTr5aapjN0IRYmySNofEJpB/jWc2CCCesCd n93680nSy5+/uW+lBzCbeQb78+WIE84ZRAizW9I5VTQibskaxgcrOyDYPNW9Fz8GkT nrtVV0AD3r6iJ9Fj/0PPZexO688vlGRacL3eYAqbsadNtqsaOcUSBiHq1g/S0oIUOq btLhwRa5Y/0vw== X-Nifty-SrcIP: [218.220.227.105] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Masahiro Yamada , Michal Marek , linux-kernel@vger.kernel.org Subject: [PATCH] kbuild: remove unused baseprereq Date: Mon, 14 Jan 2019 12:16:45 +0900 Message-Id: <1547435805-8110-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 Commit eea199b445f6 ("kbuild: remove unnecessary LEX_PREFIX and YACC_PREFIX") removed the last users of this macro. Signed-off-by: Masahiro Yamada --- scripts/Kbuild.include | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index 525bff6..3081603 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include @@ -24,10 +24,6 @@ depfile = $(subst $(comma),_,$(dot-target).d) basetarget = $(basename $(notdir $@)) ### -# filename of first prerequisite with directory and extension stripped -baseprereq = $(basename $(notdir $<)) - -### # Escape single quote for use in echo statements escsq = $(subst $(squote),'\$(squote)',$1)