mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-25 20:01:50 +00:00
Checked in patch for bug 185145: libical does not build under cygwin perl in textmode
This commit is contained in:
parent
91a22d4fd5
commit
23adef2baa
@ -9,7 +9,8 @@ sub read_values_file {
|
||||
|
||||
while(<F>){
|
||||
|
||||
chop;
|
||||
chomp;
|
||||
chop if($^O eq 'cygwin'); # cygwin perl doesn't chomp dos newlines properly so use chomp
|
||||
|
||||
s/#.*$//g;
|
||||
s/\"//g;
|
||||
@ -65,7 +66,8 @@ sub read_properties_file {
|
||||
|
||||
while(<F>){
|
||||
|
||||
chop;
|
||||
chomp;
|
||||
chop if($^O eq 'cygwin'); # cygwin perl doesn't chomp dos newlines properly so use chomp
|
||||
|
||||
s/#.*$//g;
|
||||
s/\"//g;
|
||||
@ -96,7 +98,8 @@ sub read_parameters_file {
|
||||
|
||||
while(<F>){
|
||||
|
||||
chop;
|
||||
chomp;
|
||||
chop if($^O eq 'cygwin'); # cygwin perl doesn't chomp dos newlines properly so use chomp
|
||||
|
||||
s/#.*$//g;
|
||||
s/\"//g;
|
||||
|
Loading…
x
Reference in New Issue
Block a user