summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2015-01-06 13:10:25 +0000
committerSteve Hay <steve.m.hay@googlemail.com>2015-01-06 13:19:32 +0000
commitf7219c0a9696421192a4830631fa6e3fd28adf39 (patch)
tree2d4a53b5f80f20d2cf6aa7107c4434ff3bdd27fb /win32
parent1adbeba0a4bd082e42cd1499f87faef5175d36a2 (diff)
downloadperl-f7219c0a9696421192a4830631fa6e3fd28adf39.tar.gz
miniperl needs config.h to build
Diffstat (limited to 'win32')
-rw-r--r--win32/Makefile2
-rw-r--r--win32/makefile.mk2
2 files changed, 2 insertions, 2 deletions
diff --git a/win32/Makefile b/win32/Makefile
index d956c0c708..2f7b86d9b9 100644
--- a/win32/Makefile
+++ b/win32/Makefile
@@ -991,7 +991,7 @@ $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL
# See the comment in Makefile.SH explaining this seemingly cranky ordering
$(MINIPERL) : ..\lib\buildcustomize.pl
-..\lib\buildcustomize.pl : $(MINIDIR) $(MINI_OBJ) ..\write_buildcustomize.pl
+..\lib\buildcustomize.pl : .\config.h $(MINIDIR) $(MINI_OBJ) ..\write_buildcustomize.pl
$(LINK32) -subsystem:console -out:$(MINIPERL) @<<
$(LINK_FLAGS) $(DELAYLOAD) $(LIBFILES) $(MINI_OBJ)
<<
diff --git a/win32/makefile.mk b/win32/makefile.mk
index acbacf0c7b..511be13d11 100644
--- a/win32/makefile.mk
+++ b/win32/makefile.mk
@@ -1220,7 +1220,7 @@ $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL
# See the comment in Makefile.SH explaining this seemingly cranky ordering
$(MINIPERL) : ..\lib\buildcustomize.pl
-..\lib\buildcustomize.pl : $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS) ..\write_buildcustomize.pl
+..\lib\buildcustomize.pl : .\config.h $(MINIDIR) $(MINI_OBJ) $(CRTIPMLIBS) ..\write_buildcustomize.pl
.IF "$(CCTYPE)" == "GCC"
$(LINK32) -v -mconsole -o $(MINIPERL) $(BLINK_FLAGS) \
$(mktmp $(LKPRE) $(MINI_OBJ) $(LIBFILES) $(LKPOST))