GNOME Bugzilla – Bug 628794
Issue in gtkdoc-mkman.in
Last modified: 2010-09-08 18:30:55 UTC
Just reading the code (to remove use of --stringparam gtkdoc.version in openSUSE, see https://bugzilla.novell.com/show_bug.cgi?id=635376 -- this is purely downstream), I found two issues in gtkdoc-mkman.in: @XSLTPROC@ $path_arg --nonet --xinclude \ --stringparam gtkdoc.bookname $module --stringparam gtkdoc.version"@VERSION@" \ manpages/docbook.xsl $document || exit $? It should be: @XSLTPROC@ $path_arg --nonet --xinclude \ --stringparam gtkdoc.bookname $module \ --stringparam gtkdoc.version" @VERSION@" \ manpages/docbook.xsl $document || exit $? (missing \ on the second line, and missing space before @VERSION@)
Thanks! commit 0fb5c13ffc107811762554fc4aa067afdfbe11c9 Author: Stefan Kost <ensonic@users.sf.net> Date: Wed Sep 8 21:30:22 2010 +0300 mkman: fix command invocation. Add missing \ and space. Fixes #628794