/usr/src/glibc/debian/debver2localesdep.pl is in eglibc-source 2.19-0ubuntu6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/usr/bin/perl
for my $i (0..$#ARGV) {
$_ = $ARGV[$i];
/(.*)-(.*)/m;
$debver = $1;
$devrev = $2;
@revs = split('\.', $devrev);
$devrev = $revs[0];
$devrev = "$devrev.$revs[1]" if defined($revs[1]) and $revs[1] ne "0";
print ", " if $i > 0;
print "glibc-$debver-$devrev";
}
print "\n";
|