Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(727)

Unified Diff: openssl/util/copy.pl

Issue 9254031: Upgrade chrome's OpenSSL to same version Android ships with. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: '' Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « openssl/util/clean-depend.pl ('k') | openssl/util/cygwin.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: openssl/util/copy.pl
===================================================================
--- openssl/util/copy.pl (revision 105093)
+++ openssl/util/copy.pl (working copy)
@@ -8,16 +8,9 @@
# Perl script 'copy' comment. On Windows the built in "copy" command also
# copies timestamps: this messes up Makefile dependencies.
-my $stripcr = 0;
-
my $arg;
foreach $arg (@ARGV) {
- if ($arg eq "-stripcr")
- {
- $stripcr = 1;
- next;
- }
$arg =~ s|\\|/|g; # compensate for bug/feature in cygwin glob...
foreach (glob $arg)
{
@@ -56,10 +49,6 @@
|| die "Can't Open $dfile";
while (sysread IN, $buf, 10240)
{
- if ($stripcr)
- {
- $buf =~ tr/\015//d;
- }
syswrite(OUT, $buf, length($buf));
}
close(IN);
« no previous file with comments | « openssl/util/clean-depend.pl ('k') | openssl/util/cygwin.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698