[Devel] [PATCH] c/r: Fix no-dot-config-targets pattern in linux/Makefile
John Dykstra
john.dykstra1 at gmail.com
Mon Aug 3 12:43:30 PDT 2009
Oren, I'm not sure who you're accepting patches from, but...
--
Kernel builds that specify targets in the checkpoint/ directory will
fail or be incorrect because the autoconfig files were not included.
One way to reproduce the problem is:
make checkpoint/sys.s
The problem is that this pattern in linux/Makefile matches files in the
checkpoint/ directory:
no-dot-config-targets := clean mrproper distclean \
cscope TAGS tags help %docs check% \
include/linux/version.h headers_% \
kernelrelease kernelversion
Make the pattern more exact, per the current set of linux build targets.
Signed-off-by: John Dykstra <john.dykstra1 at gmail.com>
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index cf631d7..17445a6 100644
--- a/Makefile
+++ b/Makefile
@@ -400,7 +400,7 @@ endif
# of make so .config is not included in this case either (for *config).
no-dot-config-targets := clean mrproper distclean \
- cscope TAGS tags help %docs check% \
+ cscope TAGS tags help %docs checkstack \
include/linux/version.h headers_% \
kernelrelease kernelversion
--
1.5.4.3
_______________________________________________
Containers mailing list
Containers at lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/containers
More information about the Devel
mailing list