All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] MAINTAINERS: repair file entry in DOCUMENTATION
@ 2024-04-17 10:14 Lukas Bulwahn
  2024-04-17 13:46 ` Akira Yokosawa
  2024-04-24 19:15 ` Jonathan Corbet
  0 siblings, 2 replies; 3+ messages in thread
From: Lukas Bulwahn @ 2024-04-17 10:14 UTC (permalink / raw)
  To: Akira Yokosawa, Jonathan Corbet, linux-doc
  Cc: kernel-janitors, linux-kernel, Lukas Bulwahn

From: Lukas Bulwahn <lukas.bulwahn@redhat.com>

Commit 1e596d5eff3d ("docs: Detect variable fonts and suggest denylisting
them") adds the new script check-variable-fonts.sh and intends to refer to
it in the DOCUMENTATION section in MAINTAINERS. However, the file entry
refers to scripts/check-variable-font.sh. Note the missing "s".

Hence, ./scripts/get_maintainer.pl --self-test=patterns complains about a
broken reference.

Repair this new file entry in the DOCUMENTATION section.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@redhat.com>
---
 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 4356b28ce625..250c8f8caa08 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -6493,7 +6493,7 @@ S:	Maintained
 P:	Documentation/doc-guide/maintainer-profile.rst
 T:	git git://git.lwn.net/linux.git docs-next
 F:	Documentation/
-F:	scripts/check-variable-font.sh
+F:	scripts/check-variable-fonts.sh
 F:	scripts/documentation-file-ref-check
 F:	scripts/kernel-doc
 F:	scripts/sphinx-pre-install
-- 
2.44.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] MAINTAINERS: repair file entry in DOCUMENTATION
  2024-04-17 10:14 [PATCH] MAINTAINERS: repair file entry in DOCUMENTATION Lukas Bulwahn
@ 2024-04-17 13:46 ` Akira Yokosawa
  2024-04-24 19:15 ` Jonathan Corbet
  1 sibling, 0 replies; 3+ messages in thread
From: Akira Yokosawa @ 2024-04-17 13:46 UTC (permalink / raw)
  To: Lukas Bulwahn, Jonathan Corbet, linux-doc
  Cc: kernel-janitors, linux-kernel, Lukas Bulwahn, Akira Yokosawa

On Wed, 17 Apr 2024 12:14:29 +0200, Lukas Bulwahn wrote:
> From: Lukas Bulwahn <lukas.bulwahn@redhat.com>
> 
> Commit 1e596d5eff3d ("docs: Detect variable fonts and suggest denylisting
> them") adds the new script check-variable-fonts.sh and intends to refer to
> it in the DOCUMENTATION section in MAINTAINERS. However, the file entry
> refers to scripts/check-variable-font.sh. Note the missing "s".

My bad... :-/

> 
> Hence, ./scripts/get_maintainer.pl --self-test=patterns complains about a
> broken reference.
> 
> Repair this new file entry in the DOCUMENTATION section.
> 
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@redhat.com>

Thank you for the fix!

Reviewed-by: Akira Yokosawa <akiyks@gmail.com>

> ---
>  MAINTAINERS | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 4356b28ce625..250c8f8caa08 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -6493,7 +6493,7 @@ S:	Maintained
>  P:	Documentation/doc-guide/maintainer-profile.rst
>  T:	git git://git.lwn.net/linux.git docs-next
>  F:	Documentation/
> -F:	scripts/check-variable-font.sh
> +F:	scripts/check-variable-fonts.sh
>  F:	scripts/documentation-file-ref-check
>  F:	scripts/kernel-doc
>  F:	scripts/sphinx-pre-install


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] MAINTAINERS: repair file entry in DOCUMENTATION
  2024-04-17 10:14 [PATCH] MAINTAINERS: repair file entry in DOCUMENTATION Lukas Bulwahn
  2024-04-17 13:46 ` Akira Yokosawa
@ 2024-04-24 19:15 ` Jonathan Corbet
  1 sibling, 0 replies; 3+ messages in thread
From: Jonathan Corbet @ 2024-04-24 19:15 UTC (permalink / raw)
  To: Lukas Bulwahn, Akira Yokosawa, linux-doc
  Cc: kernel-janitors, linux-kernel, Lukas Bulwahn

Lukas Bulwahn <lbulwahn@redhat.com> writes:

> From: Lukas Bulwahn <lukas.bulwahn@redhat.com>
>
> Commit 1e596d5eff3d ("docs: Detect variable fonts and suggest denylisting
> them") adds the new script check-variable-fonts.sh and intends to refer to
> it in the DOCUMENTATION section in MAINTAINERS. However, the file entry
> refers to scripts/check-variable-font.sh. Note the missing "s".
>
> Hence, ./scripts/get_maintainer.pl --self-test=patterns complains about a
> broken reference.
>
> Repair this new file entry in the DOCUMENTATION section.
>
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@redhat.com>
> ---
>  MAINTAINERS | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 4356b28ce625..250c8f8caa08 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -6493,7 +6493,7 @@ S:	Maintained
>  P:	Documentation/doc-guide/maintainer-profile.rst
>  T:	git git://git.lwn.net/linux.git docs-next
>  F:	Documentation/
> -F:	scripts/check-variable-font.sh
> +F:	scripts/check-variable-fonts.sh
>  F:	scripts/documentation-file-ref-check

Applied, thanks.

jon

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-04-24 19:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-17 10:14 [PATCH] MAINTAINERS: repair file entry in DOCUMENTATION Lukas Bulwahn
2024-04-17 13:46 ` Akira Yokosawa
2024-04-24 19:15 ` Jonathan Corbet

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.