From: Jarkko Hietaniemi Date: Wed, 23 Aug 2000 13:33:34 +0000 (+0000) Subject: VMS MMS (make) wants null action. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=838c087d5eeab7762b195c2d2ecd8e1f74f7cb4b;p=p5sagit%2Fp5-mst-13.2.git VMS MMS (make) wants null action. p4raw-id: //depot/perl@6780 --- diff --git a/ext/B/Makefile.PL b/ext/B/Makefile.PL index 4bf226d..8da9c0a 100644 --- a/ext/B/Makefile.PL +++ b/ext/B/Makefile.PL @@ -35,12 +35,14 @@ sub upupfile { File::Spec->updir, $_[0]); } -sub postamble { - my $op_h = upupfile('op.h'); - my $cop_h = upupfile('cop.h'); +sub MY::postamble { + my $op_h = upupfile('op.h'); + my $cop_h = upupfile('cop.h'); + my $noecho = shift->{NOECHO}; " -B\$(OBJ_EXT) : defsubs.h +B\$(OBJ_EXT) : defsubs.h -defsubs.h :: $op_h $cop_h -" +defsubs.h :: $op_h $cop_h + $noecho \$(NOOP) +" }