Hi,

I noticed a subtle change from make-3.79 to 3.80 on Win32: The shell to
process the commands in the Makefile is called as

    $(SHELL) -c $command $args ...

in make-3.79, but as

    $(SHELL) /c $command $args ...

in make-3.80.

This is a problem for the cygwin bash(1), because the first argument
"/c" is considered a file name.

Can I somehow change the "/c" to "-c"?

I didn't find any place in the source code where the string "/c" is
used, so perhaps it's not a bug in make, but in cygwin.

Roland


_______________________________________________
Bug-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-make

Reply via email to