In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/b58c2b0d98b34cdb1e784267c831fc2feedfe199?hp=9fa1876f8c85a45e62dadb781de3c3a20361cd6f>
- Log ----------------------------------------------------------------- commit b58c2b0d98b34cdb1e784267c831fc2feedfe199 Author: Tony Cook <[email protected]> Date: Tue Feb 27 10:50:35 2018 +1100 (perl #127743) don't probe Storable limits so much (Win32 makefiles) Win32 port of the changes in 8175eebc32 ----------------------------------------------------------------------- Summary of changes: win32/GNUmakefile | 2 +- win32/Makefile | 2 +- win32/makefile.mk | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/win32/GNUmakefile b/win32/GNUmakefile index 631366c9fd..c81a825642 100644 --- a/win32/GNUmakefile +++ b/win32/GNUmakefile @@ -1602,7 +1602,7 @@ PostExt : ..\lib\Storable\Limit.pm # we need the exe, perl(ver).dll, and the Exporter, Storable, Win32 extensions # rebasePE covers just about that, including adjustment for static builds ..\lib\Storable\Limit.pm : rebasePE - $(PERLEXE) -I..\lib -I. ..\dist\Storable\stacksize --core + $(PLMAKE) -C ..\dist\Storable lib\Storable\Limit.pm if not exist ..\lib\Storable mkdir ..\lib\Storable copy ..\dist\Storable\lib\Storable\Limit.pm ..\lib\Storable\Limit.pm diff --git a/win32/Makefile b/win32/Makefile index 3889ff9ec5..108022990b 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -1228,7 +1228,7 @@ Extensions_realclean: PostExt: ..\lib\Storable\Limit.pm ..\lib\Storable\Limit.pm: $(PERLEXE) Extensions - $(PERLEXE) -I..\lib -I. ..\dist\Storable\stacksize --core + cd ..\dist\Storable && $(MAKE) lib\Storable\Limit.pm if not exist ..\lib\Storable mkdir ..\lib\Storable copy ..\dist\Storable\lib\Storable\Limit.pm ..\lib\Storable\Limit.pm diff --git a/win32/makefile.mk b/win32/makefile.mk index e2d53cfd91..78f2d1fbb1 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -1554,7 +1554,7 @@ PostExt : ..\lib\Storable\Limit.pm # we need the exe, perl(ver).dll, and the Exporter, Storable, Win32 extensions # rebasePE covers just about that, including adjustment for static builds ..\lib\Storable\Limit.pm : rebasePE - $(PERLEXE) -I..\lib -I. ..\dist\Storable\stacksize --core + cd ..\dist\Storable && $(MAKE) lib\Storable\Limit.pm if not exist ..\lib\Storable mkdir ..\lib\Storable copy ..\dist\Storable\lib\Storable\Limit.pm ..\lib\Storable\Limit.pm -- Perl5 Master Repository
