mirror of
https://github.com/curl/curl.git
synced 2026-08-24 13:43:32 +03:00
perl: removed a double semicolon at end of line
Remove double semicolons at end of line in Perl code. Closes: #8709 Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
This commit is contained in:
parent
b7c0bd68ff
commit
0a6eebfc14
3 changed files with 8 additions and 8 deletions
|
|
@ -164,7 +164,7 @@ print "Never used configure options\n";
|
|||
for my $w (sort keys %avail) {
|
||||
if(!$used{$w}) {
|
||||
printf " %s%s\n", $w,
|
||||
$defaulton{$w} ? " (auto)":"";;
|
||||
$defaulton{$w} ? " (auto)":"";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -248,22 +248,22 @@ sub appveyor {
|
|||
$job{'config'} = $1;
|
||||
}
|
||||
elsif($_ =~ /^ OPENSSL: (.*)/) {
|
||||
$job{'openssl'} = $1 eq "ON" ? "true": "false";;
|
||||
$job{'openssl'} = $1 eq "ON" ? "true": "false";
|
||||
}
|
||||
elsif($_ =~ /^ SCHANNEL: (.*)/) {
|
||||
$job{'schannel'} = $1 eq "ON" ? "true": "false";;
|
||||
$job{'schannel'} = $1 eq "ON" ? "true": "false";
|
||||
}
|
||||
elsif($_ =~ /^ ENABLE_UNICODE: (.*)/) {
|
||||
$job{'unicode'} = $1 eq "ON" ? "true": "false";;
|
||||
$job{'unicode'} = $1 eq "ON" ? "true": "false";
|
||||
}
|
||||
elsif($_ =~ /^ HTTP_ONLY: (.*)/) {
|
||||
$job{'http-only'} = $1 eq "ON" ? "true": "false";;
|
||||
$job{'http-only'} = $1 eq "ON" ? "true": "false";
|
||||
}
|
||||
elsif($_ =~ /^ TESTING: (.*)/) {
|
||||
$job{'testing'} = $1 eq "ON" ? "true": "false";;
|
||||
$job{'testing'} = $1 eq "ON" ? "true": "false";
|
||||
}
|
||||
elsif($_ =~ /^ SHARED: (.*)/) {
|
||||
$job{'shared'} = $1 eq "ON" ? "true": "false";;
|
||||
$job{'shared'} = $1 eq "ON" ? "true": "false";
|
||||
}
|
||||
elsif($_ =~ /^ TARGET: \"-A (.*)\"/) {
|
||||
$job{'target'} = $1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue