Junio C Hamano <gitster@xxxxxxxxx> writes: > One thing I had trouble with is that, with /bin/sh linked to > /bin/bash, none of these > > $ SHELL=/bin/dash make test > $ cd t && SHELL=/bin/dash make test > $ cd t && SHELL=/bin/dash make check-meson > > seem to fail for me. Ah, I had to do this: $ cd t && make SHELL=/bin/dash check-meson to make it fail. Sorry for the noise.