|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] Minor bug in 4.0.0-rc2
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
|
|
|
|
|