Browse Source

* Removed debug-code accidentally committed in r29206

git-svn-id: trunk@29208 -
joost 10 years ago
parent
commit
c90f9500c7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/fpmkunit/src/fpmkunit.pp

+ 2 - 2
packages/fpmkunit/src/fpmkunit.pp

@@ -5080,13 +5080,13 @@ procedure TBuildEngine.SysDeleteTree(Const ADirectoryName: String);
     // these the RemoveDir is tried three times, with a delay of 5 seconds. See
     // bug 21868
     i := 2;
-    result := RemoveDir(ADirectoryName+'te');
+    result := RemoveDir(ADirectoryName);
     while not result and (i>0) do
       begin
         log(vlWarning, SWarnRetryRemDirectory, [ADirectoryName]);
         sleep(5000);
         dec(i);
-        result := RemoveDir(ADirectoryName+'fd');
+        result := RemoveDir(ADirectoryName);
       end;
 
     if result then