diff options
author | Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com> | 2007-01-29 07:47:01 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-01-30 11:28:16 -0500 |
commit | 59df3230fc57fa8900bebf3d2d68221d549f3c7c (patch) | |
tree | 59ca2c3a435e44395fbb42e9eaeb349c10bcf783 /Makefile | |
parent | 3d8b3036f5260b366ec0982aa2f862d841d058c2 (diff) |
[PATCH] `make help' in build tree doesn't show headers_* targets
`make help' in the build tree doesn't show the help texts about the
`headers_install' and `headers_check' targets because it looks for
include/asm-$(ARCH)/Kbuild in the wrong place.
Add the missing `$(srctree)' prefixes to fix this.
Also move the printing of the default install path for the headers inside the
`if/fi', where it belongs.
Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Acked-by: Oleg Verych <olecom@flower.upol.cz>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1116,15 +1116,15 @@ help: | |||
1116 | @echo ' cscope - Generate cscope index' | 1116 | @echo ' cscope - Generate cscope index' |
1117 | @echo ' kernelrelease - Output the release version string' | 1117 | @echo ' kernelrelease - Output the release version string' |
1118 | @echo ' kernelversion - Output the version stored in Makefile' | 1118 | @echo ' kernelversion - Output the version stored in Makefile' |
1119 | @if [ -r include/asm-$(ARCH)/Kbuild ]; then \ | 1119 | @if [ -r $(srctree)/include/asm-$(ARCH)/Kbuild ]; then \ |
1120 | echo ' headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \ | 1120 | echo ' headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \ |
1121 | echo ' (default: $(INSTALL_HDR_PATH))'; \ | ||
1121 | fi | 1122 | fi |
1122 | @echo ' (default: $(INSTALL_HDR_PATH))' | ||
1123 | @echo '' | 1123 | @echo '' |
1124 | @echo 'Static analysers' | 1124 | @echo 'Static analysers' |
1125 | @echo ' checkstack - Generate a list of stack hogs' | 1125 | @echo ' checkstack - Generate a list of stack hogs' |
1126 | @echo ' namespacecheck - Name space analysis on compiled kernel' | 1126 | @echo ' namespacecheck - Name space analysis on compiled kernel' |
1127 | @if [ -r include/asm-$(ARCH)/Kbuild ]; then \ | 1127 | @if [ -r $(srctree)/include/asm-$(ARCH)/Kbuild ]; then \ |
1128 | echo ' headers_check - Sanity check on exported headers'; \ | 1128 | echo ' headers_check - Sanity check on exported headers'; \ |
1129 | fi | 1129 | fi |
1130 | @echo '' | 1130 | @echo '' |