]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
python: Fix doc directory name for stable releases
authorCole Robinson <crobinso@redhat.com>
Fri, 27 Apr 2012 16:06:34 +0000 (12:06 -0400)
committerCole Robinson <crobinso@redhat.com>
Fri, 27 Apr 2012 16:41:05 +0000 (12:41 -0400)
We were using the libvirt release version (like 0.9.11) and not
the configure version (which for stable releases is 0.9.11.X)

Most other places got this right so hopefully that's all the fallout
from the version format change :)

Signed-off-by: Cole Robinson <crobinso@redhat.com>
python/Makefile.am
python/tests/Makefile.am

index 0305bcccd830f8937aee2cc3f4283176984752cf..02b59eb2d533054e26d5c0f5d14e755100e948dd 100644 (file)
@@ -18,7 +18,7 @@ INCLUDES = \
 
 AM_CFLAGS = $(WARN_CFLAGS)
 
-DOCS_DIR = $(datadir)/doc/libvirt-python-$(LIBVIRT_VERSION)
+DOCS_DIR = $(datadir)/doc/libvirt-python-$(VERSION)
 
 DOCS = ${srcdir}/TODO
 
index 2a5bc62fdd91ffd15d9bcbe5b703fbd50057a5ef..c3878250147bb50dfdb11956c3a07510c9a8287e 100644 (file)
@@ -1,7 +1,7 @@
 ## Copyright (C) 2005-2011 Red Hat, Inc.
 ## See COPYING.LIB for the License of this software
 
-EXAMPLE_DIR = $(datadir)/doc/libvirt-python-$(LIBVIRT_VERSION)/examples
+EXAMPLE_DIR = $(datadir)/doc/libvirt-python-$(VERSION)/examples
 
 PYTESTS=               \
        basic.py        \