From bbcd91bb0de943b364670373957a5658c4487692 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Fri, 21 Sep 2012 12:31:13 -0400 Subject: [PATCH] Fix wordwrap.pl so it is more portable Needed so that wordwrap.pl works with perl 5.14.2 Signed-off-by: "Theodore Ts'o" --- wordwrap.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wordwrap.pl b/wordwrap.pl index 646bbc35..807c6288 100644 --- a/wordwrap.pl +++ b/wordwrap.pl @@ -9,8 +9,8 @@ while (<>) { } next if (/^$/); # skip blank lines $linelen = 0; - split; - while (defined($word = shift @_)) { + @words = split; + while (defined($word = shift @words)) { $word =~ s#\$\(srcdir\)/\.\./version.h#\$\(top_srcdir\)/version.h#; $word =~ s#\$\(srcdir\)/.\.\/\.\./version.h#\$\(top_srcdir\)/version.h#; $word =~ s#\$\(srcdir\)/.\.\/et/com_err.h#\$\(top_srcdir\)/lib/et/com_err.h#;