Title: [125675] trunk/Tools
- Revision
- 125675
- Author
- [email protected]
- Date
- 2012-08-15 08:46:47 -0700 (Wed, 15 Aug 2012)
Log Message
Fix the 'git log' call in VCSUtils.pm for Windows
https://bugs.webkit.org/show_bug.cgi?id=94113
Patch by Kevin Funk <[email protected]> on 2012-08-15
Reviewed by Kenneth Rohde Christiansen.
Failed because of invalid enquoting characters.
* Scripts/VCSUtils.pm:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (125674 => 125675)
--- trunk/Tools/ChangeLog 2012-08-15 14:17:44 UTC (rev 125674)
+++ trunk/Tools/ChangeLog 2012-08-15 15:46:47 UTC (rev 125675)
@@ -1,3 +1,14 @@
+2012-08-15 Kevin Funk <[email protected]>
+
+ Fix the 'git log' call in VCSUtils.pm for Windows
+ https://bugs.webkit.org/show_bug.cgi?id=94113
+
+ Reviewed by Kenneth Rohde Christiansen.
+
+ Failed because of invalid enquoting characters.
+
+ * Scripts/VCSUtils.pm:
+
2012-08-14 Gustavo Noronha Silva <[email protected]>
[jhbuild] move md5sum checking to update-webkit-libs-jhbuild
Modified: trunk/Tools/Scripts/VCSUtils.pm (125674 => 125675)
--- trunk/Tools/Scripts/VCSUtils.pm 2012-08-15 14:17:44 UTC (rev 125674)
+++ trunk/Tools/Scripts/VCSUtils.pm 2012-08-15 15:46:47 UTC (rev 125675)
@@ -383,7 +383,7 @@
my $svnInfo = `$command`;
($revision) = ($svnInfo =~ m/Revision: (\d+).*/g);
} elsif (isGitDirectory($dir)) {
- my $command = "git log --grep='git-svn-id: ' -n 1 | grep git-svn-id:";
+ my $command = "git log --grep=\"git-svn-id: \" -n 1 | grep git-svn-id:";
$command = "LC_ALL=C $command" if !isWindows();
$command = "cd $dir && $command";
my $gitLog = `$command`;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes