[PATCH v2 1/4] tools/nolibc: fix misleading help message regarding installation path

Willy Tarreau posted 4 patches 3 months, 1 week ago
[PATCH v2 1/4] tools/nolibc: fix misleading help message regarding installation path
Posted by Willy Tarreau 3 months, 1 week ago
The help message says the headers are going to be installed into
tools/include/nolibc but this is only the default if $OUTPUT is not set,
so better clarify this (the current value of $OUTPUT is already shown).

Signed-off-by: Willy Tarreau <w@1wt.eu>
---
 tools/include/nolibc/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/include/nolibc/Makefile b/tools/include/nolibc/Makefile
index 143c2d2c2ba6..4f617d91a5ff 100644
--- a/tools/include/nolibc/Makefile
+++ b/tools/include/nolibc/Makefile
@@ -79,7 +79,7 @@ help:
 	@echo "Supported targets under nolibc:"
 	@echo "  all                 call \"headers\""
 	@echo "  clean               clean the sysroot"
-	@echo "  headers             prepare a sysroot in tools/include/nolibc/sysroot"
+	@echo "  headers             prepare a sysroot in \$${OUTPUT}sysroot"
 	@echo "  headers_standalone  like \"headers\", and also install kernel headers"
 	@echo "  help                this help"
 	@echo ""
-- 
2.17.5
Re: [PATCH v2 1/4] tools/nolibc: fix misleading help message regarding installation path
Posted by Thomas Weißschuh 3 months, 1 week ago
On 2025-11-02 11:46:08+0100, Willy Tarreau wrote:
> The help message says the headers are going to be installed into
> tools/include/nolibc but this is only the default if $OUTPUT is not set,
> so better clarify this (the current value of $OUTPUT is already shown).
> 
> Signed-off-by: Willy Tarreau <w@1wt.eu>

Applied.