I tried the following trivial patch, but it didn't help since svn 1.2
and later has a bug when exporting externals:
  http://subversion.tigris.org/issues/show_bug.cgi?id=2429

Haven't tried svn 1.1 yet.

--- SDCommon.pm
+++ SDCommon.pm 2006-07-17 09:31:42.000000000 +0200
@@ -372,9 +372,10 @@
 }

 sub check_uncommited {
-   open($svn, "svn status |");
+   open($svn, "svn status --ignore-externals |");
    @statuslist = <$svn>;
    for(@statuslist) {
+       next if /^\s*X+\s+(.*)/;
        if(/^\s*M+\s+(.*)/) {
            # FIXME: rewrite to run svn propget in one command with a
list if
            # somebody complains about performance issues


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to