diff mbox

[Ping,trivial] PR 56653: Fix warning when verifying checksums from MD5SUMS file in tarballs

Message ID alpine.LSU.2.11.1402011303270.4318@tuna.site
State New
Headers show

Commit Message

Gerald Pfeifer Feb. 1, 2014, 1:29 p.m. UTC
Thanks Dmitry!

On Wed, 29 Jan 2014, Dmitry Gorbachev wrote:
> This patch is to fix `md5sum: WARNING: 1 line is improperly formatted' thing.

It would have been helpful to indicate what the actual problem was;
at first I did not see that indeed it was an empty line in MD5SUMS
that was causing the problem.

I updated the ChangeLog entry and committed the following patch to
mainline and the GCC 4.8 branch.

Gerald

2014-02-01  Dmitry Gorbachev  <d.g.gorbachev@gmail.com>

	PR other/56653
	* gcc_release: Avoid printing empty line to generated MD5SUMS files.
	Bump copyright year.
diff mbox

Patch

Index: gcc_release
===================================================================
--- gcc_release	(revision 207366)
+++ gcc_release	(working copy)
@@ -9,7 +9,7 @@ 
 # Contents:
 #   Script to create a GCC release.
 #
-# Copyright (c) 2001, 2002, 2006, 2009, 2010, 2011 Free Software Foundation.
+# Copyright (c) 2001-2014 Free Software Foundation.
 #
 # This file is part of GCC.
 #
@@ -213,7 +213,7 @@ 
 #
 # Suggested usage:
 # md5sum -c MD5SUMS | grep -v \"OK$\"
-" > MD5SUMS
+#" > MD5SUMS
 
   find . -type f |
   sed -e 's:^\./::' -e '/MD5SUMS/d' |