xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* Minor bug in 4.0.0-rc2
@ 2010-02-03 21:55 M A Young
  2010-02-03 22:06 ` Pasi Kärkkäinen
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: M A Young @ 2010-02-03 21:55 UTC (permalink / raw)
  To: xen-devel

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

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-02-20 13:22 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-03 21:55 Minor bug in 4.0.0-rc2 M A Young
2010-02-03 22:06 ` Pasi Kärkkäinen
2010-02-03 22:29   ` M A Young
2010-02-04  1:10   ` M A Young
     [not found]     ` <alpine.LFD.2.00.1002162259110.9452@vega3.dur.ac.uk>
2010-02-20 13:22       ` 4.0.0-rc4 srpm Pasi Kärkkäinen
2010-02-03 22:13 ` Minor bug in 4.0.0-rc2 Daniel Stodden
2010-02-04  9:01 ` Keir Fraser

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).