Subject: | map-metro.pl should use different shebang |
Currently map-metro.pl has
#!/usr/bin/env perl
as the shebang, but this means that unfortunately the shebang is not adapted to the current perl when installing. It's better to write
#!perl
instead.