|
|
|
|
|
|
|
|
|
|
xen-devel
[PATCH] Re: [Xen-devel] New release candidate for Xen 4.0.1
I have a minor fix for this. BASH_COMPLETION_DIR is used uninitialized in
tools/libxl/Makefile which means that xl.sh can end up in / which is
not ideal. The patch below sets a sensible default for this variable.
Signed-off-by: Michael Young <m.a.young@xxxxxxxxxxxx>
--- xen-4.0.1/tools/libxl/Makefile.orig 2010-07-16 18:27:14.000000000 +0100
+++ xen-4.0.1/tools/libxl/Makefile 2010-07-16 19:39:46.000000000 +0100
@@ -4,6 +4,7 @@
XEN_ROOT = ../..
include $(XEN_ROOT)/tools/Rules.mk
+BASH_COMPLETION_DIR ?= /etc/bash_completion.d/
MAJOR = 1.0
MINOR = 0
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|