Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makefile: switch to POSIX mode to handle errors
> .POSIX > > The application shall ensure that this special target is specified without prerequisites > or commands. If it appears as the first non-comment line in the makefile, make shall > process the makefile as specified by this section; otherwise, the behavior of make is > unspecified. Running the makefile with `.POSIX` runs shells with the `-e` options, which helps with handling errors; without this, make can complet "succesfully", even if shell commands in a target fail. Note that this patch does not change behavior on macOS, which runs an older version of GNU make that does not support these options. Signed-off-by: Sebastiaan van Stijn <[email protected]>
- Loading branch information