From: Perl 5 Porters Date: Thu, 29 Aug 1996 22:17:02 +0000 (+0000) Subject: .C$(obj_ext) removed under OS/2 - conflicts with .c$(obj_ext). X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a0d6894c0f5f874105e4341e50374283d00de9bc;p=p5sagit%2Fp5-mst-13.2.git .C$(obj_ext) removed under OS/2 - conflicts with .c$(obj_ext). --- diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm index 3a91891..30f1e18 100644 --- a/lib/ExtUtils/MM_Unix.pm +++ b/lib/ExtUtils/MM_Unix.pm @@ -251,10 +251,12 @@ sub c_o { push @m, ' .c$(OBJ_EXT): $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.c - +'; + push @m, ' .C$(OBJ_EXT): $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.C - +' if $^O ne 'os2'; # Case-specific + push @m, ' .cpp$(OBJ_EXT): $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.cpp