pkgutil.pas, createimportlibfromexternals:

* only process a unit's imports if the unit is not already from a package

git-svn-id: trunk@33686 -
This commit is contained in:
svenbarth 2016-05-13 15:20:08 +00:00
parent a67fe62caa
commit b5d984da7a

View File

@ -639,8 +639,7 @@ implementation
module:=tmodule(loaded_units.first);
while assigned(module) do
begin
//if not assigned(module.package) then
if (uf_in_library and module.flags)=0 then
if not assigned(module.package) then
processimportedsyms(module.unitimportsyms);
module:=tmodule(module.next);
end;