[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH] Kconfig: fix environment variable handling
On Wed, 2016-01-13 at 03:46 -0700, Jan Beulich wrote: > With xen/Makefile including include/config/auto.conf.cmd, environment > variables checked in the latter must be available at the time of > inclusion of that file, and hence must be populated in xen/Makefile > rather than by passing to or inside xen/tools/kconfig/Makefile.kconfig. > Otherwise incremental re-builds will always be full re-builds, which is > not only annoying but actively problematic when building as non-root > and only running "install-xen" as root. > > Also take the opportunity and remove stray $(Q) uses. > > Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> > > --- a/xen/Makefile > +++ b/xen/Makefile > @@ -20,6 +20,9 @@ MAKEFLAGS += -rR > Â > ÂEFI_MOUNTPOINT ?= $(BOOT_DIR)/efi > Â > +ARCH=$(XEN_TARGET_ARCH) > +SRCARCH=$(shell echo $(ARCH) | sed -e 's/x86.*/x86/' -e > s'/arm\(32\|64\)/arm/g') Why not just use XEN_TARGET_ARCH and TARGET_ARCH as defined in xen/Rules.mk, at the point where recursing into kconfig/Makefile.kconfig? Otherwise wouldn't we risk SRCARCH and TARGET_ARCH getting out of sync? _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |