From 025bb212470ef2945c9b7f57cb7fbfceb3e04e2c Mon Sep 17 00:00:00 2001 From: David Levine Date: Mon, 7 May 2012 16:45:32 -0500 Subject: [PATCH] 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. --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 ## -- 1.7.10.4