diff options
author | Carl Worth <cworth@cworth.org> | 2008-10-06 14:00:37 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2008-10-06 14:02:19 -0700 |
commit | 9430bf57ebc86c79e28128e54aeb5a194c9cad03 (patch) | |
tree | c6f6e4f30b513d31ae4d81711237b701baf53fc9 /doc | |
parent | 5beae8f530fe7056fa965cb5ca7b345a667e8122 (diff) |
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.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/public/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/public/Makefile.am b/doc/public/Makefile.am index 00ab27db..65ed2fb1 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 = |