blob: b85696e7353076a4a0ba958217c879a0710e6271 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-bh,v 1.1.1.1 2007/06/14 19:39:46 bouyer Exp $
--- python/xen/xm/rmlabel.py.orig 2006-10-15 14:22:03.000000000 +0200
+++ python/xen/xm/rmlabel.py 2006-10-19 21:52:58.000000000 +0200
@@ -60,7 +60,7 @@
file = configfile
fd = open(file, "rb")
else:
- for prefix in [".", "/etc/xen"]:
+ for prefix in [".", "@XENDCONFDIR@"]:
file = prefix + "/" + configfile
if os.path.isfile(file):
fd = open(file, "rb")
|