Use the correct perl binary we installed against
Tom Hukins [Thu, 29 Jul 2010 14:51:42 +0000 (14:51 +0000)]
The user might have Gitalist installed against a version of Perl other
than the one that env finds first.

Setting the #! line to use /usr/bin/perl causes perl's build tools to
replace this with the full path to the version of perl that we build
against.

script/gitalist_cgi.pl
script/gitalist_create.pl
script/gitalist_fastcgi.pl
script/gitalist_server.pl
script/gitalist_test.pl

index 6b4ab49..0adafb4 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
 
 use FindBin;
 BEGIN {
index 375e79b..69f9a0b 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
 use FindBin;
 BEGIN {
     my $env = "$FindBin::Bin/env";
index 5928055..bb180a4 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
 use FindBin;
 BEGIN {
     my $env = "$FindBin::Bin/env";
index f459b83..f634aef 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
 use FindBin;
 BEGIN {
     my $env = "$FindBin::Bin/env";
index 5188b1d..edb40f9 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
 use FindBin;
 BEGIN {
     my $env = "$FindBin::Bin/env";