File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ split_patches () {
302
302
# not starting with Author, From or Date is the
303
303
# subject, and the body starts with the next nonempty
304
304
# line not starting with Author, From or Date
305
- perl -ne ' BEGIN { $subject = 0 }
305
+ @@PERL@@ -ne ' BEGIN { $subject = 0 }
306
306
if ($subject > 1) { print ; }
307
307
elsif (/^\s+$/) { next ; }
308
308
elsif (/^Author:/) { s/Author/From/ ; print ;}
@@ -334,7 +334,7 @@ split_patches () {
334
334
# Since we cannot guarantee that the commit message is in
335
335
# git-friendly format, we put no Subject: line and just consume
336
336
# all of the message as the body
337
- LANG=C LC_ALL=C perl -M' POSIX qw(strftime)' -ne ' BEGIN { $subject = 0 }
337
+ LANG=C LC_ALL=C @@PERL@@ -M' POSIX qw(strftime)' -ne ' BEGIN { $subject = 0 }
338
338
if ($subject) { print ; }
339
339
elsif (/^\# User /) { s/\# User/From:/ ; print ; }
340
340
elsif (/^\# Date /) {
Original file line number Diff line number Diff line change 581
581
582
582
gitweb_conf () {
583
583
cat > " $fqgitdir /gitweb/gitweb_config.perl" << EOF
584
- #!/usr/bin/perl
584
+ #!@@PERL@@
585
585
our \$ projectroot = "$( dirname " $fqgitdir " ) ";
586
586
our \$ git_temp = "$fqgitdir /gitweb/tmp";
587
587
our \$ projects_list = \$ projectroot;
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ find_matching_ref='
106
106
}
107
107
'
108
108
109
- ref=$( git ls-remote " $url " | perl -e " $find_matching_ref " " $head " " $headrev " " $tag_name " )
109
+ ref=$( git ls-remote " $url " | @@PERL@@ -e " $find_matching_ref " " $head " " $headrev " " $tag_name " )
110
110
111
111
url=$( git ls-remote --get-url " $url " )
112
112
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ module_list()
156
156
git ls-files -z --error-unmatch --stage -- " $@ " ||
157
157
echo " unmatched pathspec exists"
158
158
) |
159
- perl -e '
159
+ @@PERL@@ -e '
160
160
my %unmerged = ();
161
161
my ($null_sha1) = ("0" x 40);
162
162
my @out = ();
You can’t perform that action at this time.
0 commit comments