After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 628794 - Issue in gtkdoc-mkman.in
Issue in gtkdoc-mkman.in
Status: RESOLVED FIXED
Product: gtk-doc
Classification: Platform
Component: general
unspecified
Other Linux
: Normal normal
: 1.16
Assigned To: gtk-doc maintainers
gtk-doc maintainers
Depends on:
Blocks:
 
 
Reported: 2010-09-04 20:59 UTC by Vincent Untz
Modified: 2010-09-08 18:30 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Vincent Untz 2010-09-04 20:59:54 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@)
Comment 1 Stefan Sauer (gstreamer, gtkdoc dev) 2010-09-08 18:30:55 UTC
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