diff options
Diffstat (limited to 'sci-biology/recon/files/recon-1.08-perl-shebangs.patch')
-rw-r--r-- | sci-biology/recon/files/recon-1.08-perl-shebangs.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sci-biology/recon/files/recon-1.08-perl-shebangs.patch b/sci-biology/recon/files/recon-1.08-perl-shebangs.patch new file mode 100644 index 000000000000..769fe4a93c65 --- /dev/null +++ b/sci-biology/recon/files/recon-1.08-perl-shebangs.patch @@ -0,0 +1,19 @@ +Make Perl shebangs Prefix friendly +See also: https://blogs.gentoo.org/mgorny/2016/02/08/a-quick-note-on-portable-shebangs/ + +--- a/scripts/MSPCollect.pl ++++ b/scripts/MSPCollect.pl +@@ -1,4 +1,4 @@ +-#! /usr/bin/perl ++#!/usr/bin/env perl + + if (!@ARGV) { + die "usage: MSPCollect BLAST_output_file\n"; +--- a/scripts/recon.pl ++++ b/scripts/recon.pl +@@ -1,4 +1,4 @@ +-#! /usr/bin/perl ++#!/usr/bin/env perl + + $path = ""; + |