From 729c4b3eeef132ea29d1145d276b63744acfa023 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 19 Oct 2009 21:37:20 +1100 Subject: s4-selftest: fixed 'make testenv' The 'TERM' variable is used for terminal type, so we can't use it for what terminal to use. --- selftest/selftest.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selftest/selftest.pl b/selftest/selftest.pl index 1cae9eaa7d..ef54320571 100755 --- a/selftest/selftest.pl +++ b/selftest/selftest.pl @@ -835,7 +835,7 @@ if ($opt_testenv) { my $envvarstr = exported_envvars_str($testenv_vars); - my $term = ($ENV{TERM} or "xterm"); + my $term = ($ENV{TERMINAL} or "xterm"); system("$term -e 'echo -e \" Welcome to the Samba4 Test environment '$testenv_name' -- cgit