All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] c/r:  Fix no-dot-config-targets pattern in linux/Makefile
@ 2009-08-03 19:43 John Dykstra
  2009-08-04  8:20 ` Oren Laadan
  0 siblings, 1 reply; 4+ messages in thread
From: John Dykstra @ 2009-08-03 19:43 UTC (permalink / raw)
  To: oren Laadan, Dan Smith
  Cc: Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA

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-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
 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

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] c/r: Fix no-dot-config-targets pattern in linux/Makefile
  2009-08-03 19:43 [PATCH] c/r: Fix no-dot-config-targets pattern in linux/Makefile John Dykstra
@ 2009-08-04  8:20 ` Oren Laadan
       [not found]   ` <4A77EF5D.7070501-RdfvBDnrOixBDgjK7y7TUQ@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Oren Laadan @ 2009-08-04  8:20 UTC (permalink / raw)
  To: John Dykstra
  Cc: Dan Smith, Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA



John Dykstra wrote:
> Oren, I'm not sure who you're accepting patches from, but...

I accept any good patch  :)
(pushed to ckpt-v17-dev)

Oren.


> 
> --
> 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-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> ---
>  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
>  

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] c/r:  Fix no-dot-config-targets pattern in linux/Makefile
       [not found]   ` <4A77EF5D.7070501-RdfvBDnrOixBDgjK7y7TUQ@public.gmane.org>
@ 2009-08-04 14:50     ` John Dykstra
  2009-08-04 17:07       ` Oren Laadan
  0 siblings, 1 reply; 4+ messages in thread
From: John Dykstra @ 2009-08-04 14:50 UTC (permalink / raw)
  To: Oren Laadan
  Cc: Dan Smith, Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA

On Tue, 2009-08-04 at 04:20 -0400, Oren Laadan wrote:
> 
> I accept any good patch  :)

What's a good way to package the patch on the list so that you'll notice
it, but it will still be clear that it's not intended for mainline?

  --  John

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] c/r: Fix no-dot-config-targets pattern in linux/Makefile
  2009-08-04 14:50     ` John Dykstra
@ 2009-08-04 17:07       ` Oren Laadan
  0 siblings, 0 replies; 4+ messages in thread
From: Oren Laadan @ 2009-08-04 17:07 UTC (permalink / raw)
  To: John Dykstra
  Cc: Dan Smith, Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA



John Dykstra wrote:
> On Tue, 2009-08-04 at 04:20 -0400, Oren Laadan wrote:
>> I accept any good patch  :)
> 
> What's a good way to package the patch on the list so that you'll notice
> it, but it will still be clear that it's not intended for mainline?

Since c/r is not (yet) in mainline, 'c/r' prefix and cc'ing me should
make it visible enough.

Thanks,

Oren.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-08-04 17:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-03 19:43 [PATCH] c/r: Fix no-dot-config-targets pattern in linux/Makefile John Dykstra
2009-08-04  8:20 ` Oren Laadan
     [not found]   ` <4A77EF5D.7070501-RdfvBDnrOixBDgjK7y7TUQ@public.gmane.org>
2009-08-04 14:50     ` John Dykstra
2009-08-04 17:07       ` Oren Laadan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.