https://bugs.webkit.org/show_bug.cgi?id=72349
Patch by Peter Kasting <pkasting@google.com> on 2011-11-15
Reviewed by Adam Roben.
* Scripts/VCSUtils.pm:
(isSVNDirectory):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@100286
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2011-11-15 Peter Kasting <pkasting@google.com>
+
+ Handle svn 1.7 when detecting whether a directory is in an svn checkout.
+ https://bugs.webkit.org/show_bug.cgi?id=72349
+
+ Reviewed by Adam Roben.
+
+ * Scripts/VCSUtils.pm:
+ (isSVNDirectory):
+
2011-11-15 Simon Hausmann <simon.hausmann@nokia.com>
[Qt] Centralize hide_symbols and ensure all libs are built with symbol visibility & bsymbolic_functions
sub isSVNDirectory($)
{
my ($dir) = @_;
-
- return -d File::Spec->catdir($dir, ".svn");
+ return system("cd $dir && svn info > " . File::Spec->devnull() . " 2>&1") == 0;
}
sub isSVN()