* do not use a wildcard while deleting smartlinked objects after linking stage in a script, conflicts with script filename quoting on Unix at least

git-svn-id: trunk@37918 -
This commit is contained in:
Károly Balogh 2018-01-06 10:19:21 +00:00
parent 3dda26b3b5
commit 7e630686e0

View File

@ -891,7 +891,8 @@ Implementation
end
else
begin
AsmRes.AddDeleteCommand(FixFileName(smartpath+current_module.asmprefix^+'*'+target_info.objext));
while not SmartLinkOFiles.Empty do
AsmRes.AddDeleteCommand(SmartLinkOFiles.GetFirst);
if scripted_ar then
AsmRes.AddDeleteCommand(scriptfile);
AsmRes.AddDeleteDirCommand(smartpath);