diff options
author | Steve Hay <steve.m.hay@googlemail.com> | 2015-01-06 18:13:26 +0000 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2015-01-06 18:13:26 +0000 |
commit | 735ecbe919d740c2d0068de6daf6f2359bbcd3eb (patch) | |
tree | d5f8d813a1237beb05ef693ebce8d374f3dbe1b2 /win32/Makefile | |
parent | a9e545b9f0ac4f99a60c51a6602bffb2442917ce (diff) | |
download | perl-735ecbe919d740c2d0068de6daf6f2359bbcd3eb.tar.gz |
minitest needs config.h to build $(MINIPERL)
Since f7219c0a9696421192a4830631fa6e3fd28adf39 didn't work out, just add
the config.h dependency directly to minitest instead (which was my main
reason for doing this anyway).
We can also drop the utils dependency from minitest since it doesn't seem
to be required other than to get git_version.h/Config_git.pl made along
the way, but we can add that dependency directly instead. In this way,
minitest still works, but now without building the full perl.exe and
perl5XX.dll as well (which was previously happening as a consequence of
the utils dependency).
Diffstat (limited to 'win32/Makefile')
-rw-r--r-- | win32/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/Makefile b/win32/Makefile index d956c0c708..c5de85e2cf 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -1312,7 +1312,7 @@ $(UNIDATAFILES) ..\pod\perluniprops.pod : $(MINIPERL) $(CONFIGPM) ..\lib\unicore cd ..\lib\unicore && \ ..\$(MINIPERL) -I.. -I..\..\dist\Cwd\lib -I..\..\dist\Cwd mktables -P ..\..\pod -maketest -makelist -p -check $@ $(FIRSTUNIFILE) -minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils $(UNIDATAFILES) +minitest : .\config.h $(MINIPERL) ..\git_version.h $(GLOBEXE) $(CONFIGPM) $(UNIDATAFILES) $(XCOPY) $(MINIPERL) ..\t\$(NULL) if exist ..\t\perl.exe del /f ..\t\perl.exe rename ..\t\miniperl.exe perl.exe |