]> 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)
committerEric Blake <eblake@redhat.com>
Thu, 17 May 2012 16:44:10 +0000 (10:44 -0600)
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>
(cherry picked from commit 002b18b3fb8dc3c088d389344992959dfedeac9e)

python/Makefile.am
python/tests/Makefile.am

index 3068eee0b89b4b860749f47f303f79abe9ece49f..a05463b7b62567c83a8b0c15fbed3430a6487b5d 100644 (file)
@@ -14,7 +14,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        \