From: Peter Prymmer Date: Fri, 8 Sep 2000 11:02:19 +0000 (-0700) Subject: make the ran_tests intermediate file 8.3 friendly X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9fba8746fe404a1cb38d0356aa0483a293ba1d19;p=p5sagit%2Fp5-mst-13.2.git make the ran_tests intermediate file 8.3 friendly Message-ID: p4raw-id: //depot/perl@7043 --- diff --git a/Makefile.SH b/Makefile.SH index fa22695..9b160ed 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -728,7 +728,7 @@ _cleaner1: done _cleaner2: - rm -f core core.*perl.*.? *perl.core t/core t/core.perl.*.? t/*perl.core t/misctmp* t/forktmp* t/tmp* t/c t/perl t/ran_tests .?*.c so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR) + rm -f core core.*perl.*.? *perl.core t/core t/core.perl.*.? t/*perl.core t/misctmp* t/forktmp* t/tmp* t/c t/perl t/rantests .?*.c so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR) rm -rf $(addedbyconf) rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old rm -f $(private) @@ -791,7 +791,7 @@ test check: test-prep else \ cd t && PERL_SKIP_TTY_TEST=1 $(LDLIBPTH) ./perl TEST; \ fi - @echo "Ran tests" > t/ran_tests + @echo "Ran tests" > t/rantests utest ucheck: test-prep if (true /dev/null 2>&1; then \ diff --git a/installperl b/installperl index b1a1877..c65af5a 100755 --- a/installperl +++ b/installperl @@ -159,7 +159,7 @@ if ($d_dosuid && $>) { die "You must run as root to install suidperl\n"; } -x 'perl' . $exe_ext || die "perl isn't executable!\n"; -x 'suidperl' . $exe_ext|| die "suidperl isn't executable!\n" if $d_dosuid; --f 't/ran_tests' || $Is_W32 +-f 't/rantests' || $Is_W32 || warn "WARNING: You've never run 'make test'!!!", " (Installing anyway.)\n";