See attached patch which prevents the docs/Makefile from including invalid targets that just happen to be editor temp files (emacs temp files have a "#" character which really boggles make).
-- Aaron Sherman <[EMAIL PROTECTED]> Senior Systems Engineer and Toolsmith "It's the sound of a satellite saying, 'get me down!'" -Shriekback
Index: config/gen/makefiles.pl =================================================================== RCS file: /cvs/public/parrot/config/gen/makefiles.pl,v retrieving revision 1.30 diff -u -r1.30 makefiles.pl --- config/gen/makefiles.pl 19 Apr 2004 11:31:44 -0000 1.30 +++ config/gen/makefiles.pl 27 Apr 2004 19:52:18 -0000 @@ -84,7 +84,7 @@ # set up docs/Makefile, partly based on the .ops in the root dir opendir OPS, "ops" or die "opendir ops: $!"; - my @ops = sort grep { /\.ops$/ } readdir OPS; + my @ops = sort grep { !/^\./ && /\.ops$/ } readdir OPS; closedir OPS; my $pod = join " ", map { my $t = $_; $t =~ s/\.ops$/.pod/; "ops/$t" } @ops;