summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2005-06-16 09:09:22 +0000
committerSteve Hay <SteveHay@planit.com>2005-06-16 09:09:22 +0000
commit2aefcc789e83c2ed63b8e10639b28c870b3f9bf6 (patch)
tree620a4ebe2637c71136c94d780336a37e0a43f92a /win32
parent9506093ea8f75836097a0d91d3eec90d306ff9e1 (diff)
downloadperl-2aefcc789e83c2ed63b8e10639b28c870b3f9bf6.tar.gz
Simplify win32/makefile.mk for static extensions with GCC
p4raw-id: //depot/perl@24863
Diffstat (limited to 'win32')
-rw-r--r--win32/makefile.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/makefile.mk b/win32/makefile.mk
index 417d480120..430913e92c 100644
--- a/win32/makefile.mk
+++ b/win32/makefile.mk
@@ -1094,7 +1094,7 @@ $(PERLDLL): perldll.def $(PERLDLL_OBJ) $(PERLDLL_RES) Extensions_static
.ELIF "$(CCTYPE)" == "GCC"
$(LINK32) -mdll -o $@ -Wl,--base-file -Wl,perl.base $(BLINK_FLAGS) \
$(mktmp $(LKPRE) $(PERLDLL_OBJ:s,\,$B,) \
- $(shell $(MINIPERL) -I..\lib buildext.pl --list-static-libs) \
+ $(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 $(MINIPERL) -I..\lib buildext.pl --list-static-libs) \
+ $(shell @type Extensions_static) \
$(LIBFILES) perl.exp $(LKPOST))
.ELSE
$(LINK32) -dll -def:perldll.def -out:$@ \