From mboxrd@z Thu Jan 1 00:00:00 1970 From: Keir Fraser Subject: Re: Minor bug in 4.0.0-rc2 Date: Thu, 04 Feb 2010 09:01:29 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: M A Young , "xen-devel@lists.xensource.com" List-Id: xen-devel@lists.xenproject.org Thanks. Actually a trailing slash was appended in quite a few places, so I will fix them all at the same time. -- Keir On 03/02/2010 21:55, "M A Young" wrote: > I have been trying to put 4.0.0-rc2 into an RPM, and I got the error > "canonicalization unexpectedly shrank by one character" when it was > creating files for the debuginfo package. This is because this bit of rpm > doesn't like // in paths to file names, and the // comes from the makefile > xen-4.0.0/tools/blktap2/drivers/Makefile which sets XEN_ROOT=../../../ and > then uses it like $(XEN_ROOT)/tools/libaio/src . XEN_ROOT=../../../ be > replaced by XEN_ROOT=../../.. to keep rpm happy please (eg. with the > following patch)? > > Michael Young > > --- xen-4.0.0/tools/blktap2/drivers/Makefile.orig 2010-02-02 > 20:43:00.000000000 +0000 > +++ xen-4.0.0/tools/blktap2/drivers/Makefile 2010-02-03 20:55:14.000000000 > +0000 > @@ -1,4 +1,4 @@ > -XEN_ROOT=../../../ > +XEN_ROOT=../../.. > BLKTAP_ROOT= .. > include $(XEN_ROOT)/tools/Rules.mk > > > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xensource.com > http://lists.xensource.com/xen-devel