[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH] stubdom: fix make clean and distclean on a freshly cloned tree
On Mon, Mar 02, 2015 at 02:15:43PM +0000, Ian Campbell wrote: > On Mon, 2015-03-02 at 11:15 +0000, Wei Liu wrote: > > > -include $(XEN_ROOT)/Config.mk > > > + > > > +ifeq (,$(findstring clean,$(MAKECMDGOALS))) > > > + ifeq ($(wildcard $(MINI_OS)/Config.mk),) > > > > + $(error Please run `make mini-os-dir' in top-level directory) > > > + endif > > > + include $(XEN_ROOT)/Config.mk > > I'm not sure why the inclusion of this apparently unrelated file > ($(MINI_OS) vs $(XEN_ROOT) is conditionalised here. > > If that wasn't here then the two ifeq's could be combined into something > like: > > ifeq(,$(findstring clean,$(MAKECMDGOALS)$(wildcard $(MINI_OS)/Config.mk)) > > or is that too subtle? > A bit subtle to me. I used the same line for all three locations so it might be easier to understand the condition. > > > +endif > > > + > > > -include $(XEN_ROOT)/config/Stubdom.mk > > > > > > GNU_TARGET_ARCH:=$(XEN_TARGET_ARCH) > > > diff --git a/stubdom/c/Makefile b/stubdom/c/Makefile > > > index c646c26..b252dca 100644 > > > --- a/stubdom/c/Makefile > > > +++ b/stubdom/c/Makefile > > > @@ -1,6 +1,8 @@ > > > XEN_ROOT = $(CURDIR)/../.. > > > > > > +ifeq (,$(findstring clean,$(MAKECMDGOALS))) > > > include $(XEN_ROOT)/Config.mk > > XEN_ROOT/Config.mk always exists. Did you misread it as MINI_OS? > No, I don't think I misread. The subtle thing is that XEN_ROOT/Config.mk has include $(XEN_ROOT)/config/$(XEN_OS).mk Here XEN_OS=MiniOS. Then in MiniOS.mk include $(XEN_ROOT)/extras/mini-os/Config.mk If you don't have extra/mini-os you get an error. Wei. > (and in the next hunk too) > _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |