# New Ticket Created by James Keenan # Please include the string: [perl #42073] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=42073 >
I expect that 'make realclean' will return my Parrot sandbox to the 'pre-Configure.pl' status, i.e., it should contain only files listed in the MANIFEST and, since each of those files came from the Parrot repository, each such file should have a defined 'svn status'. All files created by 'Configure.pl' and 'make' should be deleted. Today, however, I noticed in a couple of different sandboxes that one file created when Configure.pl was run was not being cleaned up when I called 'make realclean': compilers/pirc/Makefile. [recon] 567 $ perl Configure.pl ... [recon] 571 $ make realclean /usr/local/bin/perl -MExtUtils::Command -e rm_f \ "t/compilers/*/*.out" \ "t/compilers/*/*.pasm" \ [snip output of 'make realclean'] [recon] 572 $ ls -l compilers/pirc/Makefile -rw-r--r-- 1 jimk jimk 2536 Mar 25 12:53 compilers/pirc/Makefile [recon] 573 $ svn status -v compilers/pirc/Makefile ? compilers/pirc/Makefile This is how compilers/pirc/Makefile begins: [recon] 574 $ rhead compilers/pirc/Makefile # DO NOT EDIT THIS FILE # Generated by Parrot::Configure::Step from config/gen/makefiles/pirc.in Can someone explain why this file is not cleaned up, and provide a patch to do so? Thank you very much. kid51