Xen interface order and fix python parallel build

* src/xend_internal.c: fix ordering when parsing multiple Xen
  interfaces, patch by Jim Fehlig
* python/Makefile.am: fix parallel build
Daniel
This commit is contained in:
Daniel Veillard 2008-10-01 15:31:02 +00:00
parent 758733cb55
commit 3bc324139e
3 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
Wed Oct 1 17:28:47 CEST 2008 Daniel Veillard <veillard@redhat.com>
* src/xend_internal.c: fix ordering when parsing multiple Xen
interfaces, patch by Jim Fehlig
* python/Makefile.am: fix parallel build
Thu Sep 25 13:37:42 IST 2008 Mark McLoughlin <markmc@redhat.com>
* docs/virsh.pod: fixup some minor issues - e.g. bogus

View File

@ -50,7 +50,7 @@ GENERATED= libvirt-export.c \
$(GENERATED): $(srcdir)/$(GENERATE) $(API_DESC)
$(PYTHON) $(srcdir)/$(GENERATE) $(srcdir)
libvirt.py: $(srcdir)/libvir.py libvirtclass.py
libvirt.py: $(srcdir)/libvir.py $(GENERATED)
cat $(srcdir)/libvir.py libvirtclass.py > $@-t
mv $@-t $@

View File

@ -1884,6 +1884,8 @@ xenDaemonParseSxprNets(virConnectPtr conn,
prev->next = net;
else
def->nets = net;
prev = net;
vif_index++;
}
}