[cairo-commit] doc/public
Carl Worth
cworth at kemper.freedesktop.org
Mon Oct 6 14:02:51 PDT 2008
doc/public/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 9430bf57ebc86c79e28128e54aeb5a194c9cad03
Author: Carl Worth <cworth at cworth.org>
Date: Mon Oct 6 14:00:37 2008 -0700
Fix scrambled version number in generated documentation.
In the cairo 1.8.0 release the documentation would get generated with
the second and third version components transposed, (so it would say
1.0.8). Fix the obviously mistaken transposition.
diff --git a/doc/public/Makefile.am b/doc/public/Makefile.am
index 00ab27d..65ed2fb 100644
--- a/doc/public/Makefile.am
+++ b/doc/public/Makefile.am
@@ -38,7 +38,7 @@ content_files = \
$(NULL)
version.xml: $(top_srcdir)/cairo-version.h
- echo $(CAIRO_VERSION_MAJOR).$(CAIRO_VERSION_MICRO).$(CAIRO_VERSION_MINOR) > $@
+ echo $(CAIRO_VERSION_MAJOR).$(CAIRO_VERSION_MINOR).$(CAIRO_VERSION_MICRO) > $@
# Images to copy into HTML directory
HTML_IMAGES =
More information about the cairo-commit
mailing list