* Restrict use of postw32 external utility to

win32/wdosx target systems.

git-svn-id: trunk@17929 -
This commit is contained in:
pierre 2011-07-04 07:36:47 +00:00
parent 1a468eebc7
commit d1a6ef9cd9

View File

@ -1656,7 +1656,8 @@ implementation
cmdstr:=cmdstr+' --version '+dllversion;
cmdstr:=cmdstr+' --input '+maybequoted(fn);
cmdstr:=cmdstr+' --stack '+tostr(stacksize);
DoExec(FindUtil(utilsprefix+'postw32'),cmdstr,false,false);
if target_info.system in [system_i386_win32, system_i386_wdosx] then
DoExec(FindUtil(utilsprefix+'postw32'),cmdstr,false,false);
postprocessexecutable:=true;
exit;
end;