aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorJoseph Myers <jsm28@cam.ac.uk>2001-01-03 20:15:01 +0000
committerJoseph Myers <jsm28@gcc.gnu.org>2001-01-03 20:15:01 +0000
commitfd939e46c94da2be169eff47ca6b81df02e3dcb3 (patch)
tree8deadd121231e5387db45efaf8552705fcd5d8d0 /contrib
parent9ef6d39a0fa102860a0299ff1d9e1caa8d873253 (diff)
downloadgcc-fd939e46c94da2be169eff47ca6b81df02e3dcb3.zip
gcc-fd939e46c94da2be169eff47ca6b81df02e3dcb3.tar.gz
gcc-fd939e46c94da2be169eff47ca6b81df02e3dcb3.tar.bz2
texi2pod.pl: Handle @option and @env.
contrib: * texi2pod.pl: Handle @option and @env. gcc: * configure.in: Require at least texinfo 4.0. Check for whether Pod::Man is sufficiently recent to regenerate GCC manpages. * configure: Regenerate. * Makefile.in (TEXI2POD): Call perl explicitly rather than relying on #!. (GENERATED_MANPAGES): Define. (generated-manpages): New target. Depend on cpp.1 as well as gcov.1. (install-man): Depend on $(GENERATED_MANPAGES) (defined by configure to generated-manpages or empty) rather than on the manpages directly. Remove execute permission from installed gcov.1 as well as cpp.1. * cpp.1, gcov.1: Regenerate. From-SVN: r38668
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ChangeLog4
-rwxr-xr-xcontrib/texi2pod.pl2
2 files changed, 5 insertions, 1 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index 2b0fc7e..31947c1 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,7 @@
+2001-01-03 Joseph S. Myers <jsm28@cam.ac.uk>
+
+ * texi2pod.pl: Handle @option and @env.
+
2001-01-03 Mike Stump <mrs@wrs.com>
* snapshot: Update to account for java libraries.
diff --git a/contrib/texi2pod.pl b/contrib/texi2pod.pl
index 0d5139a..dc9a68b 100755
--- a/contrib/texi2pod.pl
+++ b/contrib/texi2pod.pl
@@ -251,7 +251,7 @@ sub postprocess
# Formatting commands.
s/\@(?:dfn|var|emph|cite|i)\{([^\}]*)\}/I<$1>/g;
s/\@(?:code|kbd)\{([^\}]*)\}/C<$1>/g;
- s/\@(?:samp|strong|key|b)\{([^\}]*)\}/B<$1>/g;
+ s/\@(?:samp|strong|key|option|env|b)\{([^\}]*)\}/B<$1>/g;
s/\@sc\{([^\}]*)\}/\U$1/g;
s/\@file\{([^\}]*)\}/F<$1>/g;
s/\@w\{([^\}]*)\}/S<$1>/g;