Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use POSIX-compatible redirection in riscv-tools Makefile
The Makefile currently uses &> which works in bash, but not other shells. On Ubuntu 20.04.6 LTS, `make` uses /bin/sh, which is a symlink to dash. dash does not support this syntax. This PR replaces &> with > and 2>&1, which is compatible with both bash and dash.
- Loading branch information