diff options
author | Steve Hay <SteveHay@planit.com> | 2005-06-16 09:51:33 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-06-16 09:51:33 +0000 |
commit | 7a67865adbea98917830ba110adf80e1a4ee46ab (patch) | |
tree | b39216972b1bc834a11691293a44265e1e7c6b0c /win32 | |
parent | 2e8a6c53cfdc6b1782b20f4b56eab80f0546bbb3 (diff) | |
download | perl-7a67865adbea98917830ba110adf80e1a4ee46ab.tar.gz |
Fix changes 24862 and 24863 for Sarathy's old dmake
p4raw-id: //depot/perl@24866
Diffstat (limited to 'win32')
-rw-r--r-- | win32/makefile.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win32/makefile.mk b/win32/makefile.mk index 430913e92c..0f35355727 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -1088,13 +1088,13 @@ $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static $(LINK32) -Tpd -ap $(BLINK_FLAGS) \ @$(mktmp c0d32$(o) $(PERLDLL_OBJ:s,\,$B,)$N \ $@,$N \ - $(shell @type Extensions_static) $(LIBFILES)$N \ + $(subst,\,$B $(shell @type Extensions_static)) $(LIBFILES)$N \ perldll.def$N) $(IMPLIB) $*.lib $@ .ELIF "$(CCTYPE)" == "GCC" $(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \ $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,$B,) \ - $(shell @type Extensions_static) \ + $(subst,\,$B $(shell @type Extensions_static)) \ $(LIBFILES) $(LKPOST)) dlltool --output-lib $(PERLIMPLIB) \ --dllname $(PERLDLL:b).dll \ @@ -1103,7 +1103,7 @@ $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static --output-exp perl.exp $(LINK32) -mdll -o $@ $(BLINK_FLAGS) \ $(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,$B,) \ - $(shell @type Extensions_static) \ + $(subst,\,$B $(shell @type Extensions_static)) \ $(LIBFILES) perl.exp $(LKPOST)) .ELSE $(LINK32) -dll -def:perldll.def -out:$@ \ |