Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1427228 > unrolled thread
| Started by | Rusty Russell <rusty@rustcorp.com.au> |
|---|---|
| First post | 2016-06-21 05:20 +0200 |
| Last post | 2016-06-21 05:20 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
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
| From | Rusty Russell <rusty@rustcorp.com.au> |
|---|---|
| Date | 2016-06-21 05:20 +0200 |
| Subject | Re: [PATCH 10/12] lguest: Only descend into lguest directory when CONFIG_LGUEST is set |
| Message-ID | <rMkoi-cA-9@gated-at.bofh.it> |
"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 top | Article view | linux.kernel
csiph-web