* always add a fileextension to the package name so that packages with dotted names are handled correctly

git-svn-id: trunk@34231 -
This commit is contained in:
svenbarth 2016-07-29 18:28:45 +00:00
parent 839d82d9c6
commit cb5f582f94

View File

@ -411,7 +411,8 @@ implementation
constructor tpcppackage.create(const pn: string);
begin
inherited create(pn);
setfilename(pn,true);
setfilename(pn+'.ppk',true);
end;
destructor tpcppackage.destroy;