77d737ee88
- Fix build errors from the next change Approved by: doceng (implicit)
11 lines
310 B
Perl
11 lines
310 B
Perl
#!/usr/bin/perl -w
|
|
# $FreeBSD$
|
|
|
|
use strict;
|
|
|
|
while (<>) {
|
|
next unless (m,^(.*/)([\w\._-]+)\.(\d\w*)(\.gz)?$,);
|
|
my ($entity, $page, $volume) = ($2, $2, $3);
|
|
$entity =~ y/_/./;
|
|
print "<!ENTITY man.$entity.$volume \"<citerefentry/<refentrytitle/$page/<manvolnum/$volume//\">\n";
|
|
}
|