Title: [211048] trunk/Tools
- Revision
- 211048
- Author
- [email protected]
- Date
- 2017-01-23 12:15:15 -0800 (Mon, 23 Jan 2017)
Log Message
svn-create-patch should emit properties when files are moved or copied
https://bugs.webkit.org/show_bug.cgi?id=167264
Reviewed by Daniel Bates.
* Scripts/svn-create-patch:
(manufacturePatchForAdditionWithHistory): Diff the source file against nothing to get properties.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (211047 => 211048)
--- trunk/Tools/ChangeLog 2017-01-23 19:32:54 UTC (rev 211047)
+++ trunk/Tools/ChangeLog 2017-01-23 20:15:15 UTC (rev 211048)
@@ -1,3 +1,13 @@
+2017-01-23 Jonathan Bedard <[email protected]>
+
+ svn-create-patch should emit properties when files are moved or copied
+ https://bugs.webkit.org/show_bug.cgi?id=167264
+
+ Reviewed by Daniel Bates.
+
+ * Scripts/svn-create-patch:
+ (manufacturePatchForAdditionWithHistory): Diff the source file against nothing to get properties.
+
2017-01-23 Youenn Fablet <[email protected]>
[WebRTC] Filter libwebrtc link flags
Modified: trunk/Tools/Scripts/svn-create-patch (211047 => 211048)
--- trunk/Tools/Scripts/svn-create-patch 2017-01-23 19:32:54 UTC (rev 211047)
+++ trunk/Tools/Scripts/svn-create-patch 2017-01-23 20:15:15 UTC (rev 211048)
@@ -328,7 +328,7 @@
print "svn:mime-type = ${mimeType}\n\n";
} else {
my $escapedSourceFile = escapeSubversionPath($sourceFile);
- print `svn cat ${escapedSourceFile} | diff -u $devNull - | tail -n +3`;
+ print `svn diff -r 0:${sourceRevision} ${escapedSourceFile} | tail -n +5`;
}
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes