anything. Just go on to the next file.
svn path=/; revision=95
+27 Mar 2004 Michael Sterrett <mr_bones_@gentoo.org>
+ * don't fall out of the loop if update_copyright() didn't change
+ anything. Just go on to the next file.
+
21 Mar 2004 Aron Griffis <agriffis@gentoo.org>
* Fix typo $0 -> 0
# Attempt the substitution and compare
$netext = update_copyright($etext);
- last if $netext eq $etext;
+ next if $netext eq $etext; # skip this file if no change.
# Write the new ebuild
open E, ">$e.new" or warn("Can't open $e.new\n"), next;