aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Hutchings <ben@decadent.org.uk>2019-01-06 20:54:43 +0000
committerBen Hutchings <ben@decadent.org.uk>2019-01-07 04:26:03 +0000
commit508634a73d7a431c26e39d592feb439e461245a3 (patch)
tree8e72bf282d6c4996094943293940ff2a6314a5bb
parent39878a1b56ed31642aec925e4c86cbd69ce0dd65 (diff)
downloadklibc-508634a73d7a431c26e39d592feb439e461245a3.tar.gz
[klibc] Makefile: Update help text for KLIBCKERNELSRC
Since the UAPI/KAPI header split in Linux 3.7, we have needed KLIBCKERNELSRC to point to the installed UAPI headers. The "sample invocation" has been updated to reflect this but the rest of the help text has not. Link: https://www.zytor.com/pipermail/klibc/2019-January/004032.html Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index a11d1e6c7ae0d..09f531eda84fd 100644
--- a/Makefile
+++ b/Makefile
@@ -99,10 +99,10 @@ $(objtree)/.config: $(srctree)/defconfig
@false
$(KLIBCKERNELSRC):
- @echo "Cannot find kernel sources."
- @echo "Either make a 'linux' symlink point to a kernel tree "
- @echo "configured for the $(KLIBCARCH) architecture or specify "
- @echo "KLIBCKERNELSRC=<path> to the build."
+ @echo "Cannot find kernel UAPI headers."
+ @echo "Either make a 'linux' symlink point to the usr subdirectory "
+ @echo "of a kernel tree with headers installed for the $(KLIBCARCH) "
+ @echo "architecture or specify KLIBCKERNELSRC=<path>."
@false
rpmbuild = $(shell which rpmbuild 2>/dev/null || which rpm)
@@ -133,7 +133,7 @@ help:
@echo 'test - Run klibc tests'
@echo
@echo 'Build options:'
- @echo 'KLIBCKERNELSRC - Path to a configured linux tree'
+ @echo 'KLIBCKERNELSRC - Path to usr directory containing UAPI headers'
@echo 'make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
@echo 'make V=2 [targets] 2 => give reason for rebuild of target'
@echo