From b81cdbf31ecf504aa9580ef04bfdcfa57311fdba Mon Sep 17 00:00:00 2001 From: =?utf8?q?P=C3=A1draig=20Brady?= Date: Tue, 12 Jan 2010 10:18:21 +0000 Subject: [PATCH] maint: fix tests on solaris by using /usr/xpg4/bin * tests/check.mk: Prepend /usr/xpg4/bin to the $PATH if present. Using the more standard utilities allows tests such as misc/printenv, which uses the -E option to grep, to complete. --- tests/check.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/check.mk b/tests/check.mk index c1ea85ab11..86f7dc2a95 100644 --- a/tests/check.mk +++ b/tests/check.mk @@ -91,6 +91,7 @@ TESTS_ENVIRONMENT = \ PERL='$(PERL)' \ PREFERABLY_POSIX_SHELL='$(PREFERABLY_POSIX_SHELL)' \ REPLACE_GETCWD=$(REPLACE_GETCWD) \ + ; test -d /usr/xpg4/bin && PATH='/usr/xpg4/bin$(PATH_SEPARATOR)'"$$PATH"; \ PATH='$(abs_top_builddir)/src$(PATH_SEPARATOR)'"$$PATH" \ ; shell_or_perl_ -- 2.47.3