File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
utilities/script_builder/Common Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -295,7 +295,6 @@ procedure TBuilder.BuildTestScriptBash;
295295 for index:= 0 to Pred(FConfig.Entries.Count) do
296296 begin
297297 if not FConfig.Entries[index].Active then continue;
298- if FConfig.Entries[index].Compiler <> cCompilerFPC then continue;
299298 line:= line + ' ' + FConfig.Entries[index].EntryBinary + ' )' + LineEnding;
300299 line:= line + ' ' + FConfig.Entries[index].EntryBinary + LineEnding;
301300 line:= line + ' ;;' + LineEnding;
@@ -380,7 +379,7 @@ procedure TBuilder.BuildRunScriptBash;
380379 for index:= 0 to Pred(FConfig.Entries.Count) do
381380 begin
382381 if not FConfig.Entries[index].Active then continue;
383- if FConfig.Entries[index].Compiler <> cCompilerFPC then continue;
382+ if FConfig.Entries[index].EntryBinary = cBaselineBinary then continue;
384383 line:= line + ' ' + FConfig.Entries[index].EntryBinary + ' )' + LineEnding;
385384 line:= line + ' ' + FConfig.Entries[index].EntryBinary + LineEnding;
386385 line:= line + ' ;;' + LineEnding;
You can’t perform that action at this time.
0 commit comments