X-Git-Url: https://git.exim.org/buildfarm-client.git/blobdiff_plain/4eacef646c50c4fa3f19477bd4baf0f49753b1ca..b80740e090d0779470f50ee17483480b3fc5c737:/run_build diff --git a/run_build b/run_build index 5dde757..a476bdb 100755 --- a/run_build +++ b/run_build @@ -1037,7 +1037,7 @@ sub make_test print time_str(),"running make test ...\n" if $verbose; my $tests_range = $EximBuild::conf{range_num_tests} || "1 4"; my @makeout; - @makeout =`(cd $exim/test && autoconf && ./configure && $make )2>&1 `; + @makeout =`(cd $exim/test && ./configure && $make )2>&1 `; my $status = $? >>8; unless($status) { @@ -1166,7 +1166,8 @@ sub configure @tmp = `echo "Hardcoded Exim user info:"; id $exim_user cd $exim && perl -pi -e 's/^EXIM_USER=.*/EXIM_USER=$exim_user/' $local_conf`; push @confout, @tmp; - my $me = `whoami`; chomp $me; + #my $me = `whoami`; chomp $me; + my $me = getpwuid($>) // die "$0: getpwuid($>): $!\n"; @tmp = `echo "Build Farm user info:"; id $me cd $exim && perl -pi -e 's/^# CONFIGURE_OWNER=\$/CONFIGURE_OWNER=$me/' $local_conf`; push @confout, @tmp;