1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
// Reconcile DEP-5 debian/copyright to licensecheck
//
// Copyright : 2023-2025 P Blackman
// License : BSD-2-clause
//
unit compare;
{$mode delphi}
interface
procedure CompareLicenses;
implementation uses rstrings, options, filedata;
procedure CompareLicenses;
var GotOne : Boolean;
begin
GotOne := CheckFiles;
if GotOne then
begin
Writeln;
if Option_Short then
begin
Writeln ('Short ' + rsSiu); // Not all differences shown
Writeln;
end;
Halt (3);
end
else
if not Option_Format then
Writeln (rsNdf); // No differences found
end;
end.
|