diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-04-24 22:48:38 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2013-07-09 07:45:48 +0200 |
commit | f8d6280ff20162987d9905bbb380d50485ce4e99 (patch) | |
tree | 05a1298c9994716ebdd766119a6cdbee9dc6aeb8 /win32/Makefile | |
parent | bf8b9e96e2b168f1f323a8c9066ae58cbe5b4ad9 (diff) | |
download | perl-f8d6280ff20162987d9905bbb380d50485ce4e99.tar.gz |
On Win32 run autodoc.pl and pod/perlmodlib.PL using miniperl, not perl.
*nix and VMS both use miniperl to run these two build scripts. This makes
Win32 consistent.
This eliminates the last two uses of the ICWD macro, so eliminate it too.
Diffstat (limited to 'win32/Makefile')
-rw-r--r-- | win32/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/win32/Makefile b/win32/Makefile index 8968a67e49..024a238900 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -809,8 +809,6 @@ CFG_VARS = \ "optimize=$(OPTIMIZE:"=\")" \ "WIN64=$(WIN64)" -ICWD = -I..\dist\Cwd -I..\dist\Cwd\lib - # # Top targets # @@ -1153,8 +1151,8 @@ utils: $(PERLEXE) $(X2P) ..\utils\Makefile copy ..\pod\perldelta.pod ..\pod\perl5192delta.pod cd ..\win32 $(PERLEXE) $(PL2BAT) $(UTILS) - $(PERLEXE) $(ICWD) ..\autodoc.pl .. - $(PERLEXE) $(ICWD) ..\pod\perlmodlib.pl -q + $(MINIPERL) -I..\lib ..\autodoc.pl .. + $(MINIPERL) -I..\lib ..\pod\perlmodlib.pl -q ..\pod\perltoc.pod: $(PERLEXE) Extensions Extensions_nonxs $(PERLEXE) -f ..\pod\buildtoc -q |