From: David Levine Date: Mon, 7 May 2012 21:45:32 +0000 (-0500) Subject: Added $(TESTS_SHELL) at end of TESTS_ENVIRONMENT. This lets the X-Git-Url: http://git.marmaro.de/?a=commitdiff_plain;h=025bb212470ef2945c9b7f57cb7fbfceb3e04e2c;p=mmh Added $(TESTS_SHELL) at end of TESTS_ENVIRONMENT. This lets the user run the tests using a shell other than the default /bin/sh by using, e.g., make check TESTS_SHELL=/bin/bash. Thanks to Tom Lane for suggesting this. --- diff --git a/Makefile.am b/Makefile.am index 7f6b922..c6ab735 100644 --- a/Makefile.am +++ b/Makefile.am @@ -36,7 +36,8 @@ auxexecdir = @libdir@ TESTS_ENVIRONMENT = MH_OBJ_DIR=@abs_builddir@ \ MH_TEST_DIR=@abs_builddir@/test/testdir \ auxexecdir=$(auxexecdir) bindir=$(bindir) \ - mandir=$(mandir) sysconfdir=$(sysconfdir) + mandir=$(mandir) sysconfdir=$(sysconfdir) \ + $(TESTS_SHELL) ## Keep at end of TESTS_ENVIRONMENT. ## ## Important note: the "cleanup" test should always be last ##