Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: Makefile: wrap SPHINXDIRS help text

When using `make help`, SPHINXDIR doesn't wrap around 80 characters,
causing text to overflow or wrap in incorrect ways,
which then makes the text difficult to read

Signed-off-by: Mustafa Elrasheid <mustafaelrasheid@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Tested-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Message-ID: <20251227125244.6407-1-mustafaelrasheid@gmail.com>

authored by

Mustafa Elrasheid and committed by
Jonathan Corbet
8ee50b15 e9706377

+2 -1
+2 -1
Documentation/Makefile
··· 98 98 @echo ' cleandocs - clean all generated files' 99 99 @echo 100 100 @echo ' make SPHINXDIRS="s1 s2" [target] Generate only docs of folder s1, s2' 101 - @echo ' top level values for SPHINXDIRS are: $(_SPHINXDIRS)' 101 + @echo ' top level values for SPHINXDIRS are:' 102 + @echo '$(_SPHINXDIRS)' | fmt -s -w 75 -g 75 | sed 's/^/ /' 102 103 @echo ' you may also use a subdirectory like SPHINXDIRS=userspace-api/media,' 103 104 @echo ' provided that there is an index.rst file at the subdirectory.' 104 105 @echo