Hello Frankie,
You're wright it works.
What's strange is that I have another shorter command:
- copy $(PROJ).exe a:
Just before the other one that doesn't complain about the space between '-' and 'copy $(PROJ).exe a:'. Moreover make utilities from other packages work fine.
The difference is that copy is a shell/DOS command, so the command interpreter must bu run (command.com, cmd.exe, ...). This one can obviously handle the space in front of the command. In the problematic case, I run the executable directly - through CreateProcess, which seems to have problems with spaces.
Anyway, POMAKE now strip spaces for this case too. See attached version.
Pelle