diff options
author | Yves Orton <demerphq@gmail.com> | 2006-09-10 19:52:10 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-09-13 09:55:09 +0000 |
commit | 6ae7e45950bbea01cc8774a8c6c78ed87228651c (patch) | |
tree | 0c43ec5e4f05ff737c746eb9bfb7ab986ac80830 /win32 | |
parent | 8c1e32d8b48f4f5ed7cda109121338379397de87 (diff) | |
download | perl-6ae7e45950bbea01cc8774a8c6c78ed87228651c.tar.gz |
mktables executes seven time per build sigh
Message-ID: <9b18b3110609100852q2cfc2497ufceda5ff5d0875e3@mail.gmail.com>
(Fix for Windows)
p4raw-id: //depot/perl@28832
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/win32/Makefile b/win32/Makefile index 2ab3254bff..ce65ba67cf 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -513,6 +513,7 @@ GLOBEXEBUILD = !ENDIF # Unicode data files generated by mktables +FIRSTUNIFILE = ..\lib\unicore\Canonical.pl UNIDATAFILES = ..\lib\unicore\Canonical.pl ..\lib\unicore\Exact.pl \ ..\lib\unicore\Properties ..\lib\unicore\Decomposition.pl \ ..\lib\unicore\CombiningClass.pl ..\lib\unicore\Name.pl \ @@ -1272,7 +1273,7 @@ inst_lib : $(CONFIGPM) $(UNIDATAFILES) : $(MINIPERL) $(CONFIGPM) ..\lib\unicore\mktables cd ..\lib\unicore && \ - ..\$(MINIPERL) -I.. mktables + ..\$(MINIPERL) -I.. mktables -check $@ $(FIRSTUNIFILE) minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils $(UNIDATAFILES) $(XCOPY) $(MINIPERL) ..\t\$(NULL) @@ -1293,6 +1294,14 @@ test : test-prep $(PERLEXE) -I..\lib harness $(TEST_SWITCHES) $(TEST_FILES) cd ..\win32 +test-reonly : reonly utils + $(XCOPY) $(PERLEXE) ..\t\$(NULL) + $(XCOPY) $(PERLDLL) ..\t\$(NULL) + $(XCOPY) $(GLOBEXE) ..\t\$(NULL) + cd ..\t + $(PERLEXE) -I..\lib harness $(OPT) -re \bpat\b \breg + cd ..\win32 + test-notty : test-prep set PERL_SKIP_TTY_TEST=1 cd ..\t |