On Fri, Jun 11, 2004 at 08:08:31AM -0700, Jon Griffiths wrote:
The easiest way to fix this is to change the delimiting character in either option, i.e.:
winebuild: --ignore=x,y,z => --ignore=x;y;z
winegcc: -Wb,--ignore=x,y,z,<opts> => -Wb;--ignore=x,y,z;<opts>
Does anyone care which one it is?
';' is not convenient, as it conflicts with the shell ';' operator. winegcc is the front-end tool, so it's more likely to be used directly. So if anything, we should change this in winebuild. But maybe we can introduce a '-i' options instead:
winebuild: --ignore=x,y,z => -ix -iy -iz