[webkit-changes] cvs commit: WebKitTools/Scripts cvs-create-patch

Maciej mjs at opensource.apple.com
Sun Nov 27 22:21:22 PST 2005


mjs         05/11/27 22:21:22

  Modified:    .        ChangeLog
               Scripts  cvs-create-patch
  Log:
  	Reviewed and committed by Maciej.
  
  	- fixed cvs-create-patch --include produces incorrect paths
  	(http://bugzilla.opendarwin.org/show_bug.cgi?id=5846)
  
          * Scripts/cvs-create-patch: produce proper paths for new files.
  
  Revision  Changes    Path
  1.121     +9 -0      WebKitTools/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebKitTools/ChangeLog,v
  retrieving revision 1.120
  retrieving revision 1.121
  diff -u -r1.120 -r1.121
  --- ChangeLog	21 Nov 2005 09:36:51 -0000	1.120
  +++ ChangeLog	28 Nov 2005 06:21:21 -0000	1.121
  @@ -1,3 +1,12 @@
  +2005-11-27  Oliver Hunt  <ojh16 at student.canterbury.ac.nz>
  +
  +	Reviewed and committed by Maciej.
  +
  +	- fixed cvs-create-patch --include produces incorrect paths
  +	(http://bugzilla.opendarwin.org/show_bug.cgi?id=5846)
  +
  +        * Scripts/cvs-create-patch: produce proper paths for new files.
  +
   2005-11-21  Eric Seidel  <eseidel at apple.com>
   
           Reviewed by hyatt.
  
  
  
  1.9       +2 -2      WebKitTools/Scripts/cvs-create-patch
  
  Index: cvs-create-patch
  ===================================================================
  RCS file: /cvs/root/WebKitTools/Scripts/cvs-create-patch,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- cvs-create-patch	27 Aug 2005 16:30:26 -0000	1.8
  +++ cvs-create-patch	28 Nov 2005 06:21:21 -0000	1.9
  @@ -141,9 +141,9 @@
               my $unknown = $1;
               if ($includeUnknowns && $unknown !~ /^\./) {
                   if (-d $unknown) {
  -                    addNewDirectory($indexPath, $unknown);
  +                    addNewDirectory($dir, $unknown);
                   } else {
  -                    addNewFile($indexPath, $unknown);
  +                    addNewFile($dir, $unknown);
                   }
               }
           } else {
  
  
  



More information about the webkit-changes mailing list