Skip to content
Snippets Groups Projects
Commit cac6b872 authored by arseny.kapoulkine@gmail.com's avatar arseny.kapoulkine@gmail.com
Browse files

Make sure newlines are consistent for both .zip and .tar.gz archives

git-svn-id: http://pugixml.googlecode.com/svn/trunk@953 99668b35-9821-0410-8761-19e4c4f06640
parent 63c0f55e
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,18 @@ for $source (sort {$a cmp $b} @sources)
my $meta = &readfile_meta($source);
my $file = $basedir . $source;
if (-T $source)
{
# convert all newlines to Unix format
$contents =~ s/\r//g;
if ($zip)
{
# convert all newlines to Windows format for .zip distribution
$contents =~ s/\n/\r\n/g;
}
}
if ($zip)
{
my $path = $file;
......@@ -31,9 +43,6 @@ for $source (sort {$a cmp $b} @sources)
}
else
{
# tgz releases are for Unix people, Unix people like Unix newlines
$contents =~ s/\r//g if (-T $source);
$arch->add_data($file, $contents, $meta);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment