From: Steve Hay Date: Fri, 17 Nov 2006 17:07:33 +0000 (+0000) Subject: Fix the XXX in #29303 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f026e24baa3a7e847539858e94ce5f0945d6d5d8;p=p5sagit%2Fp5-mst-13.2.git Fix the XXX in #29303 p4raw-id: //depot/perl@29307 --- diff --git a/win32/makefile.mk b/win32/makefile.mk index 80454ca..de4c9eb 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -1209,14 +1209,9 @@ $(PERLSTATICLIB): Extensions_static @$(mktmp $(subst,\,$B $(shell @type Extensions_static)) \ $(PERLDLL_OBJ:s,\,$B,)) .ELIF "$(CCTYPE)" == "GCC" -# XXX: It would be nice if MinGW's ar accepted a temporary file, but this -# doesn't seem to work: -# $(LIB32) $(LIB_FLAGS) $@ \ -# $(mktmp $(LKPRE) $(subst,\,$B $(shell @type Extensions_static)) \ -# $(PERLDLL_OBJ:s,\,$B,) $(LKPOST)) - $(LIB32) $(LIB_FLAGS) $@ \ - $(subst,\,$B $(shell @type Extensions_static)) \ - $(PERLDLL_OBJ:s,\,$B,) + $(LIB32) $(LIB_FLAGS) $@ $(shell @type $(mktmp \ + $(subst,\,$B $(shell @type Extensions_static)) \ + $(PERLDLL_OBJ:s,\,$B,))) .ELSE $(LIB32) $(LIB_FLAGS) -out:$@ @Extensions_static \ @$(mktmp $(PERLDLL_OBJ:s,\,$B,))