Browse Source

* fixed compilation after changes to "+" checking

git-svn-id: trunk@1584 -
Jonas Maebe 20 years ago
parent
commit
563821918b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/utils/dotest.pp

+ 2 - 2
tests/utils/dotest.pp

@@ -542,7 +542,7 @@ begin
       AddLog(LongLogFile,Config.Note);
      CopyFile(CompilerLogFile,LongLogFile,true);
      { avoid to try again }
-     AddLog(ExeLogFile,'Failed to compile '++PPFileInfo);
+     AddLog(ExeLogFile,'Failed to compile '+PPFileInfo);
      Verbose(V_Abort,'Internal error in compiler');
      exit;
    end;
@@ -873,7 +873,7 @@ begin
            DelExecutable:=true;
 
          'U' :
-           RemotePara:=+RemotePara+' '+Para;
+           RemotePara:=RemotePara+' '+Para;
 
          'V' : DoVerbose:=true;