source: trunk/third/gtk-doc/gtkdoc-mkman.in @ 20745

Revision 20745, 278 bytes checked in by ghudson, 20 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r20744, which included commits to RCS files with non-trunk default branches.
RevLine 
[20744]1#!/bin/sh
2#
3
4prefix=@prefix@
5gtkdocdir=@datadir@/gtk-doc/
6
7if test "x$1" = "x--version"; then
8      echo "@VERSION@"
9      exit 0
10fi
11
12for i in `cd sgml;ls *.sgml`
13do j=`echo $i | sed 's/.sgml/.man/'`
14echo ": converting " $i $j
15docbook-to-man sgml/$i > man/$j 2> man/$j.log
16done
Note: See TracBrowser for help on using the repository browser.