aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChristopher Wellons <wellons@nullprogram.com>2021-03-03 14:23:06 -0500
committerRon Yorston <rmy@pobox.com>2021-03-04 08:16:51 +0000
commitb4506956a5703ae2df062ec307d76ac935be0258 (patch)
tree49f766adaf013e8d124f94ccc09d33148da9062f /docs
parent61e53aa93d3d6c6fcbea93c2a959836f51ef35e8 (diff)
downloadbusybox-w32-b4506956a5703ae2df062ec307d76ac935be0258.tar.gz
busybox-w32-b4506956a5703ae2df062ec307d76ac935be0258.tar.bz2
busybox-w32-b4506956a5703ae2df062ec307d76ac935be0258.zip
Work around GNU Make bug involving shell built-ins
The workaround for MSYS2 in 475c111 interacts badly with a long-standing bug in GNU Make where it avoids spawning a shell when it believes it can handle a command itself as a sort of Bourne shell emulation. Since "command" is typically implemented as a special shell built-in and not an actual program, and GNU Make does not implement this built-in in its Bourne shell emulation, GNU Make's shell function fails to invoke it properly, resulting in an error: make: command: Command not found One work-around is to set a custom shell that is not "/bin/sh" so that GNU Make does not assume any particular shell semantics. For instance: make SHELL=dash A second work-around is to use a shell feature not implemented by GNU Make, such as redirection or variable assignment (this patch), causing it to spawn an actual shell to handle the shell command.
Diffstat (limited to 'docs')
0 files changed, 0 insertions, 0 deletions