Sim build doesn't stop on error #421

PIPESTATUS is only available in bash.  For many of the systems
we use /bin/sh and /bin/bash are the same, but noooo, not on
Ubuntu where it is linked to dash.  I set SHELL := /bin/bash
in our makefile now.
This commit is contained in:
Alex Lin 2017-05-18 14:24:19 -05:00
parent e25a1b6a1f
commit 34c62c5aab

View File

@ -1,4 +1,4 @@
SHELL := /bin/sh
SHELL := /bin/bash
CD := cd
MV := /bin/mv
RM := /bin/rm