Skip to content
This repository was archived by the owner on Feb 3, 2021. It is now read-only.

Commit 3a3bb78

Browse files
committed
* Always prefer system perl with embedding Perl5 on OSX.
1 parent a879f45 commit 3a3bb78

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Pugs/Configure.PL

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#!/usr/bin/perl
22

3+
if ($^O eq 'darwin' and $^X ne '/usr/bin/perl') {
4+
# Always prefer system perl with embedding Perl5 on OSX.
5+
exec("/usr/bin/perl" => $0, @ARGV);
6+
}
7+
38
use 5.006;
49
use strict;
510
use Cwd;

0 commit comments

Comments
 (0)