mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-18 04:49:43 +02:00
lplupdate: better message
git-svn-id: trunk@40285 -
This commit is contained in:
parent
138e5595d8
commit
f91219158f
@ -392,8 +392,12 @@ begin
|
||||
Link:=Links[i];
|
||||
Pkg:=Packages.FindByName(Link.PkgName);
|
||||
if (Pkg=nil) then begin
|
||||
if not (Quiet and WriteCommands) then
|
||||
writeln('Dead link ',ExtractFileNameOnly(Link.LPLFilename),' to missing '+CreateRelativePath(Link.PkgFilename,PkgDir));
|
||||
if not (Quiet and WriteCommands) then begin
|
||||
if CompareText(Link.PkgName,ExtractFileNameOnly(Link.ExpFilename))=0 then
|
||||
writeln('Dead link ',ExtractFileNameOnly(Link.LPLFilename),' to missing '+CreateRelativePath(Link.PkgFilename,PkgDir))
|
||||
else
|
||||
writeln('Wrong link ',ExtractFileNameOnly(Link.LPLFilename),' to '+CreateRelativePath(Link.PkgFilename,PkgDir));
|
||||
end;
|
||||
if WriteCommands then begin
|
||||
writeln('svn rm ',CreateRelativePath(Link.LPLFilename,LazarusDir));
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user