Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1427228

Re: [PATCH 10/12] lguest: Only descend into lguest directory when CONFIG_LGUEST is set

From Rusty Russell <rusty@rustcorp.com.au>
Newsgroups linux.kernel
Subject Re: [PATCH 10/12] lguest: Only descend into lguest directory when CONFIG_LGUEST is set
Date 2016-06-21 05:20 +0200
Message-ID <rMkoi-cA-9@gated-at.bofh.it> (permalink)
References <rJQum-1bc-19@gated-at.bofh.it> <rMkoi-cA-11@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


"Andrew F. Davis" <afd@ti.com> writes:
> When CONFIG_LGUEST is not set make will still descend into the lguest
> directory but nothing will be built. This produces unneeded build
> artifacts and messages in addition to slowing the build. Fix this here.
>
> Signed-off-by: Andrew F. Davis <afd@ti.com>
> ---
>  drivers/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied,

Thanks!
Rusty.

>
> diff --git a/drivers/Makefile b/drivers/Makefile
> index 19305e0..b178e2f 100644
> --- a/drivers/Makefile
> +++ b/drivers/Makefile
> @@ -122,7 +122,7 @@ obj-$(CONFIG_ACCESSIBILITY)	+= accessibility/
>  obj-$(CONFIG_ISDN)		+= isdn/
>  obj-$(CONFIG_EDAC)		+= edac/
>  obj-$(CONFIG_EISA)		+= eisa/
> -obj-y				+= lguest/
> +obj-$(CONFIG_LGUEST)		+= lguest/
>  obj-$(CONFIG_CPU_FREQ)		+= cpufreq/
>  obj-$(CONFIG_CPU_IDLE)		+= cpuidle/
>  obj-y				+= mmc/
> -- 
> 2.8.3

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

Re: [PATCH 10/12] lguest: Only descend into lguest directory when CONFIG_LGUEST is set Rusty Russell <rusty@rustcorp.com.au> - 2016-06-21 05:20 +0200

csiph-web