- Fix build of cluster-specific file

Approved by:	doceng (implicit)
This commit is contained in:
Gabor Kovesdan 2012-08-20 13:55:48 +00:00
parent 7ba98a21ad
commit b92ed28d92
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/projects/sgml2xml/; revision=39400
4 changed files with 7 additions and 56 deletions

View file

@ -41,10 +41,11 @@ if ($#pages < 0) {
die "No users found!\n";
}
print "<?xml version='1.0' encoding='iso-8859-1'?>\n";
foreach (sort @pages) {
($gcos, $login) = split(/:/);
($firstgecos, @gecos) = split(/,/, $gcos);
print qq{<LI><A HREF="http://people.FreeBSD.org/~$login/">},
$firstgecos, "</A> ", join(', ', @gecos), "</LI>\n";
print qq{<li><a href="http://people.FreeBSD.org/~$login/">},
$firstgecos, "</a> ", join(', ', @gecos), "</li>\n";
}