mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
* python/Makefile.am: avoid a parallel make issue #472702
provided by Michael Marineau Daniel
This commit is contained in:
parent
44811e8a2a
commit
a7868e0131
@ -1,3 +1,8 @@
|
|||||||
|
Thu Feb 26 14:43:48 CET 2009 Daniel Veillard <veillard@redhat.com>
|
||||||
|
|
||||||
|
* python/Makefile.am: avoid a parallel make issue #472702
|
||||||
|
provided by Michael Marineau
|
||||||
|
|
||||||
Wed Feb 25 21:00:46 CET 2009 Daniel Veillard <veillard@redhat.com>
|
Wed Feb 25 21:00:46 CET 2009 Daniel Veillard <veillard@redhat.com>
|
||||||
|
|
||||||
* docs/formatnetwork.html docs/formatnetwork.html.in: patch from
|
* docs/formatnetwork.html docs/formatnetwork.html.in: patch from
|
||||||
|
@ -51,8 +51,11 @@ GENERATED= libvirt-export.c \
|
|||||||
libvirt-py.h \
|
libvirt-py.h \
|
||||||
libvirtclass.py
|
libvirtclass.py
|
||||||
|
|
||||||
$(GENERATED): $(srcdir)/$(GENERATE) $(API_DESC)
|
generated.stamp: $(srcdir)/$(GENERATE) $(API_DESC)
|
||||||
$(PYTHON) $(srcdir)/$(GENERATE) $(srcdir)
|
$(PYTHON) $(srcdir)/$(GENERATE) $(srcdir)
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(GENERATED): generated.stamp
|
||||||
|
|
||||||
libvirt.py: $(srcdir)/libvir.py $(GENERATED) $(CLASSES_EXTRA)
|
libvirt.py: $(srcdir)/libvir.py $(GENERATED) $(CLASSES_EXTRA)
|
||||||
cat $(srcdir)/libvir.py libvirtclass.py > $@-t
|
cat $(srcdir)/libvir.py libvirtclass.py > $@-t
|
||||||
@ -70,7 +73,7 @@ install-data-local:
|
|||||||
uninstall-local:
|
uninstall-local:
|
||||||
rm -f $(DESTDIR)$(pythondir)/libvirt.py
|
rm -f $(DESTDIR)$(pythondir)/libvirt.py
|
||||||
|
|
||||||
CLEANFILES= $(GENERATED) libvirt.py
|
CLEANFILES= $(GENERATED) generated.stamp libvirt.py
|
||||||
|
|
||||||
else
|
else
|
||||||
all:
|
all:
|
||||||
|
Loading…
Reference in New Issue
Block a user