[Webkit-unassigned] [Bug 14885] LGPL'ed files contain incorrect FSF address

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Sep 23 15:43:09 PDT 2007


http://bugs.webkit.org/show_bug.cgi?id=14885


ddkilzer at webkit.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #16267|0                           |1
        is obsolete|                            |
  Attachment #16365|                            |review?
               Flag|                            |




------- Comment #7 from ddkilzer at webkit.org  2007-09-23 15:43 PDT -------
Created an attachment (id=16365)
 --> (http://bugs.webkit.org/attachment.cgi?id=16365&action=view)
Patch v1 (bzip2 compressed; 740+KB)

Here's a bzip2-compressed patch of the changes (740+KB uncompressed).  The
sed(1) command in Attachment 16267 had the side-effect of adding a newline to
every file it touched (whether a change was made or not, including checksum and
png files), so I did the following instead (using a git working copy):

$ find . -name .git -prune -o -type f -exec grep -l 'Free Software Foundation'
{} \; > fsf.txt
$ for F in `cat fsf.txt`; do perl -p -i -e 's/59 Temple Place.*Suite 330/51
Franklin Street, Fifth Floor/; s/02111-1307/02110-1301/; s/\(51 Franklin
St\)eet/\1reet/;' $F; done

To verify the fix, I also ran these commands (to make sure there were no
results):
$ find . -name .git -prune -o -type f -exec grep -l '59 Temple Place' {} \;
$ find . -name .git -prune -o -type f -exec grep -l '02111-1307' {} \;
$ find . -name .git -prune -o -type f -exec grep -l '51 Franklin Steet' {} \;


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list