mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 10:59:33 +02:00
* Do not show a useless dash in the help message of custom fpmake options
git-svn-id: trunk@20028 -
This commit is contained in:
parent
a64ec6c1ce
commit
3895a0de0d
@ -3651,7 +3651,10 @@ procedure TCustomInstaller.Usage(const FMT: String; Args: array of const);
|
||||
|
||||
Procedure LogArgOption(const C,LC,Msg : String);
|
||||
begin
|
||||
Log(vlInfo,Format(' -%s --%-20s %s',[C,LC+'='+SValue,MSG]));
|
||||
if trim(c)='' then
|
||||
Log(vlInfo,Format(' --%-20s %s',[LC+'='+SValue,MSG]))
|
||||
else
|
||||
Log(vlInfo,Format(' -%s --%-20s %s',[C,LC+'='+SValue,MSG]));
|
||||
end;
|
||||
|
||||
var
|
||||
|
Loading…
Reference in New Issue
Block a user