mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-23 00:09:31 +02:00
* Do not check platform-availability for manifest and archive commands
git-svn-id: trunk@15267 -
This commit is contained in:
parent
b475fa84d7
commit
d4af41d4bf
@ -274,8 +274,9 @@ begin
|
||||
P:=nil;
|
||||
if assigned(P) then
|
||||
begin
|
||||
if not(CompilerOptions.CompilerOS in P.OSes) or
|
||||
not(CompilerOptions.CompilerCPU in P.CPUs) then
|
||||
if (command<>'archive') and (command<>'manifest') and
|
||||
(not(CompilerOptions.CompilerOS in P.OSes) or
|
||||
not(CompilerOptions.CompilerCPU in P.CPUs)) then
|
||||
Error(SErrPackageDoesNotSupportTarget,[P.Name,MakeTargetString(CompilerOptions.CompilerCPU,CompilerOptions.CompilerOS)]);
|
||||
end;
|
||||
{ Maybe compile fpmake executable? }
|
||||
|
Loading…
Reference in New Issue
Block a user