WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] Minor bug in 4.0.0-rc2

To: xen-devel@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-devel] Minor bug in 4.0.0-rc2
From: M A Young <m.a.young@xxxxxxxxxxxx>
Date: Wed, 3 Feb 2010 21:55:02 +0000 (GMT)
Delivery-date: Wed, 03 Feb 2010 13:55:47 -0800
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Alpine 2.00 (LFD 1167 2008-08-23)
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@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>