mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-13 10:29:17 +02:00
+ add missing "else" in r26558 to fix build
git-svn-id: trunk@26559 -
This commit is contained in:
parent
8242d060ce
commit
e6db32e192
@ -2208,7 +2208,7 @@ function GetImportLibraryFilename(const UnitName: string; AOS: TOS): string;
|
|||||||
begin
|
begin
|
||||||
if AOS in [go32v2,watcom] then
|
if AOS in [go32v2,watcom] then
|
||||||
Result := 'libimp'+UnitName
|
Result := 'libimp'+UnitName
|
||||||
if AOS in [os2,emx] then
|
else if AOS in [os2,emx] then
|
||||||
Result := UnitName
|
Result := UnitName
|
||||||
else if AOS in [netware,netwlibc,macos] then
|
else if AOS in [netware,netwlibc,macos] then
|
||||||
Result := 'lib'+UnitName
|
Result := 'lib'+UnitName
|
||||||
|
Loading…
Reference in New Issue
Block a user