Remove the foo-old files.
Jarkko Hietaniemi [Mon, 10 Mar 2003 05:31:00 +0000 (05:31 +0000)]
p4raw-id: //depot/perl@18875

opcode.pl

index 4035cc6..c44ff3f 100755 (executable)
--- a/opcode.pl
+++ b/opcode.pl
@@ -336,6 +336,12 @@ foreach ('pp_proto.h', 'pp.sym') {
 safer_rename $pp_proto_new, 'pp_proto.h';
 safer_rename $pp_sym_new, 'pp.sym';
 
+END {
+  foreach ('opcode.h', 'opnames.h', 'pp_proto.h', 'pp.sym') {
+    1 while unlink "$_-old";
+  }
+}
+
 ###########################################################################
 sub tab {
     local($l, $t) = @_;