Use any Perl on the path, rather than hard-coding /usr/bin/perl

This allows using Perl from MacPorts on OS X, as the system Perl lacks
certain modules, e.g. YAML.
This commit is contained in:
Dan Villiom Podlaski Christiansen 2012-09-12 13:26:45 +02:00
parent dd45f78b21
commit b3765d7eb6
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
#! /usr/bin/perl
#!/usr/bin/env perl
use strict;
use warnings;

View file

@ -1,4 +1,4 @@
#! /usr/bin/perl
#!/usr/bin/env perl
use strict;
use warnings;