gozer 2004/10/11 15:59:14
Modified: xs/APR/aprext Makefile.PL Log: BSD make needs an empty target, even if the target is specified as .PHONY Revision Changes Path 1.6 +4 -0 modperl-2.0/xs/APR/aprext/Makefile.PL Index: Makefile.PL =================================================================== RCS file: /home/cvs/modperl-2.0/xs/APR/aprext/Makefile.PL,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- Makefile.PL 1 Aug 2004 19:44:01 -0000 1.5 +++ Makefile.PL 11 Oct 2004 22:59:14 -0000 1.6 @@ -43,5 +43,9 @@ $string .= join '', map { "$_: $src{$_}\n\t\$(CP) $src{$_} .\n"; } keys %src; + + # BSD make needs an empty target, even if the target is specified in .PHONY + $string .= "\ndynamic ::\n"; + return $string; }