[PATCH] docs: kbuild: Fix typos in makefiles.rst

cp0613@linux.alibaba.com posted 1 patch 1 month, 2 weeks ago
Documentation/kbuild/makefiles.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] docs: kbuild: Fix typos in makefiles.rst
Posted by cp0613@linux.alibaba.com 1 month, 2 weeks ago
From: Chen Pei <cp0613@linux.alibaba.com>

The correct command to generate header files is
make headers_install.

Signed-off-by: Chen Pei <cp0613@linux.alibaba.com>
---
 Documentation/kbuild/makefiles.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/kbuild/makefiles.rst b/Documentation/kbuild/makefiles.rst
index 8aef3650c1f3..24a4708d26e8 100644
--- a/Documentation/kbuild/makefiles.rst
+++ b/Documentation/kbuild/makefiles.rst
@@ -1264,7 +1264,7 @@ Add prerequisites to archheaders
 --------------------------------
 
 The archheaders: rule is used to generate header files that
-may be installed into user space by ``make header_install``.
+may be installed into user space by ``make headers_install``.
 
 It is run before ``make archprepare`` when run on the
 architecture itself.
-- 
2.50.1
Re: [PATCH] docs: kbuild: Fix typos in makefiles.rst
Posted by Jonathan Corbet 1 month, 2 weeks ago
cp0613@linux.alibaba.com writes:

> From: Chen Pei <cp0613@linux.alibaba.com>
>
> The correct command to generate header files is
> make headers_install.
>
> Signed-off-by: Chen Pei <cp0613@linux.alibaba.com>
> ---
>  Documentation/kbuild/makefiles.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/kbuild/makefiles.rst b/Documentation/kbuild/makefiles.rst
> index 8aef3650c1f3..24a4708d26e8 100644
> --- a/Documentation/kbuild/makefiles.rst
> +++ b/Documentation/kbuild/makefiles.rst
> @@ -1264,7 +1264,7 @@ Add prerequisites to archheaders
>  --------------------------------
>  
>  The archheaders: rule is used to generate header files that
> -may be installed into user space by ``make header_install``.
> +may be installed into user space by ``make headers_install``.

Applied, thanks.

jon