Message ID | 1397032095.31448.11.camel@kazak.uk.xensource.com |
---|---|
State | New |
Headers | show |
On Wed, Apr 09, Ian Campbell wrote: > Looks like some stray CONFIG_XENDs remained after rebasing for v2. > > However you should also have rerun configure so CONFIG_XEND should not > be set anyway. The following takes care of the first issue. Thanks, with this patch the rpmbuild makes progress past the 'make' call. Olaf
On Wed, 2014-04-09 at 11:03 +0200, Olaf Hering wrote: > On Wed, Apr 09, Ian Campbell wrote: > > > Looks like some stray CONFIG_XENDs remained after rebasing for v2. > > > > However you should also have rerun configure so CONFIG_XEND should not > > be set anyway. The following takes care of the first issue. > > Thanks, with this patch the rpmbuild makes progress past the 'make' call. Thanks, I'll take this as a Tested-by: Olaf Hering <olaf@aepfle.de> if you don't mind. How was CONFIG_XEND getting set in your build though? Ian.
On Wed, Apr 09, Ian Campbell wrote: > On Wed, 2014-04-09 at 11:03 +0200, Olaf Hering wrote: > > On Wed, Apr 09, Ian Campbell wrote: > > > > > Looks like some stray CONFIG_XENDs remained after rebasing for v2. > > > > > > However you should also have rerun configure so CONFIG_XEND should not > > > be set anyway. The following takes care of the first issue. > > > > Thanks, with this patch the rpmbuild makes progress past the 'make' call. > > Thanks, I'll take this as a Tested-by: Olaf Hering <olaf@aepfle.de> if > you don't mind. Yes, please. > How was CONFIG_XEND getting set in your build though? I had configure --enable-xend in my rpm spec file. Olaf
Ian Campbell writes ("Re: [Xen-devel] [GIT PULL v2] remove xend and libxen for 4.5"): > From: Ian Campbell <ian.campbell@citrix.com> > Date: Wed, 9 Apr 2014 09:26:23 +0100 > Subject: [PATCH] docs: remove stray CONFIG_XENDs > > These were added by 7dbfc2f8b054 "docs: Honour --{en, dis}able-xend when > building docs" between v1 and the (eventually committed) v2 of 9e8672f1c36d > "tools: remove xend and associated python modules" and were missed when > rebasing for v2. > > Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
diff --git a/config/Docs.mk.in b/config/Docs.mk.in index 03fac60..a2a72fd 100644 --- a/config/Docs.mk.in +++ b/config/Docs.mk.in @@ -12,6 +12,3 @@ POD2HTML := @POD2HTML@ POD2TEXT := @POD2TEXT@ MARKDOWN := @MARKDOWN@ PERL := @PERL@ - -# Subsets of documentation to build -CONFIG_XEND := @xend@ diff --git a/docs/Makefile b/docs/Makefile index 7cd7440..5153bcb 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -9,10 +9,8 @@ DOC_ARCHES := arm x86_32 x86_64 # Documentation sources to build MAN1SRC-y := $(wildcard man/xl*.pod.1) MAN1SRC-y += $(wildcard man/xenstore*.pod.1) -MAN1SRC-$(CONFIG_XEND) += man/xm.pod.1 MAN5SRC-y := $(wildcard man/xl*.pod.5) -MAN5SRC-$(CONFIG_XEND) += man/xend-config.sxp.pod.5 man/xmdomain.cfg.pod.5 MARKDOWNSRC-y := $(wildcard misc/*.markdown)