diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-09-23 11:59:31 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-09-23 11:59:31 +0100 |
commit | 4e73d6a402bc493d66d19c409c41e1e271c6450b (patch) | |
tree | 5461d0ffa21fa7f78b7cbe387bafab9c5bc7e8b8 /win32/makefile.mk | |
parent | e27b5b51275a893e82bce85334679ee38d3d6bf8 (diff) | |
download | perl-4e73d6a402bc493d66d19c409c41e1e271c6450b.tar.gz |
Add a --chdir option to configpm, and use this in the Win32 Makfiles.
A slight Makefile simplification, and another move towards Win32 standardising
on running miniperl as $(MINIPERL), which currently is ..\miniperl.exe
Diffstat (limited to 'win32/makefile.mk')
-rw-r--r-- | win32/makefile.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/makefile.mk b/win32/makefile.mk index faf080a9a4..38b89d971e 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -1144,13 +1144,13 @@ config.w32 : $(CFGSH_TMPL) regen_config_h: $(MINIPERL) -I..\lib config_sh.PL --cfgsh-option-file $(mktmp $(CFG_VARS)) \ $(CFGSH_TMPL) > ..\config.sh - cd .. && miniperl configpm + $(MINIPERL) -I..\lib ..\configpm --chdir=.. -del /f $(CFGH_TMPL) -$(MINIPERL) -I..\lib $(ICWD) config_h.PL "INST_VER=$(INST_VER)" rename config.h $(CFGH_TMPL) $(CONFIGPM) : $(MINIPERL) ..\config.sh config_h.PL ..\minimod.pl - cd .. && miniperl configpm + $(MINIPERL) -I..\lib ..\configpm --chdir=.. if exist lib\* $(RCOPY) lib\*.* ..\lib\$(NULL) $(XCOPY) ..\*.h $(COREDIR)\*.* $(XCOPY) *.h $(COREDIR)\*.* |