From patchwork Sun Jul 9 18:32:34 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 9831857 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 14D68602BD for ; Sun, 9 Jul 2017 18:33:21 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 013EE26E97 for ; Sun, 9 Jul 2017 18:33:21 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id D554627FB7; Sun, 9 Jul 2017 18:33:20 +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 0879D26E97 for ; Sun, 9 Jul 2017 18:33:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752571AbdGISdS (ORCPT ); Sun, 9 Jul 2017 14:33:18 -0400 Received: from conuserg-08.nifty.com ([210.131.2.75]:45702 "EHLO conuserg-08.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752430AbdGISdR (ORCPT ); Sun, 9 Jul 2017 14:33:17 -0400 Received: from grover.sesame (FL1-122-131-185-176.osk.mesh.ad.jp [122.131.185.176]) (authenticated) by conuserg-08.nifty.com with ESMTP id v69IX2Cw000353; Mon, 10 Jul 2017 03:33:09 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-08.nifty.com v69IX2Cw000353 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1499625189; bh=y501vB95Y0UGhcsXbH2qRUW6WgazbCReBBDM8n+lOMo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=c/6r5jjKoEj76VA1P8y4mGHrN3rNu1KW9MT5ioi2vb9nuZA0SIz6PtwU1//0doqo3 Ql5w+U7mHLzSsX11i61hwD3crotb42SZJGsxlrvCC81fxvlRVccQof4cypLMNDt5+f 2vj1vNl5zm/EBvsdijgA/8QP1G48gjAbGdIYYNafrhX1NtFKDd6y+TBxgsHQ3B8Mvd zJf6lf8SBFZPj75YzgR9HsIxqGbLIPOWzwHVGdmcJZay2I8QsJYJXdRNlRn1X4HMfK V5Yrhsw9vtcNMZBz9O98KXGD9kEUPt86YjmqdO5Z7mVIh50MBJgVKgQM/VYeC/sl1D pUZPYCiEzZU7w== X-Nifty-SrcIP: [122.131.185.176] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: linux-arch@vger.kernel.org, Masahiro Yamada , linux-kernel@vger.kernel.org Subject: [PATCH v2 02/28] kbuild: fix comment about dst of headers_{install, check}_all Date: Mon, 10 Jul 2017 03:32:34 +0900 Message-Id: <1499625180-8067-3-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1499625180-8067-1-git-send-email-yamada.masahiro@socionext.com> References: <1499625180-8067-1-git-send-email-yamada.masahiro@socionext.com> 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 61562f981e92 ("uapi: export all arch specifics directories") changed the dst from asm- to arch- for headers_install_all or headers_check_all. Update the comment. Signed-off-by: Masahiro Yamada --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 06ef9947cf7c..ce5875628740 100644 --- a/Makefile +++ b/Makefile @@ -1133,7 +1133,7 @@ firmware_install: #Default location for installed headers export INSTALL_HDR_PATH = $(objtree)/usr -# If we do an all arch process set dst to asm-$(hdr-arch) +# If we do an all arch process set dst to include/arch-$(hdr-arch) hdr-dst = $(if $(KBUILD_HEADERS), dst=include/arch-$(hdr-arch), dst=include) PHONY += archheaders