Make: Use SHELL to run test scripts, since /bin/sh may suck
The test scripts need a POSIX-compliant Bourne shell. /bin/sh isn't on some systems, such as Solaris. Run them with $(SHELL). Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
parent
9556c6bd65
commit
55c1d29efe
1 changed files with 1 additions and 1 deletions
2
Make.mk
2
Make.mk
|
@ -100,7 +100,7 @@ endif
|
|||
# Helper for running tests
|
||||
# Usage: $(call run-test, SHELL-SCRIPT)
|
||||
# Recursively expanded, or else parameters don't work
|
||||
run-test = $(call quiet-command, $1 $(srcdir), TEST $1)
|
||||
run-test = $(call quiet-command, $(SHELL) -e $1 $(srcdir), TEST $1)
|
||||
|
||||
# How to substitute Autoconf output variables
|
||||
# Recursively expanded so that $@ and $< work.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue