[svn:parrot] r39150 - trunk/tools/dev

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Sun May 24 13:20:00 UTC 2009


Author: jkeenan
Date: Sun May 24 13:20:00 2009
New Revision: 39150
URL: https://trac.parrot.org/parrot/changeset/39150

Log:
Remove commented-out debugging code.

Modified:
   trunk/tools/dev/install_dev_files.pl

Modified: trunk/tools/dev/install_dev_files.pl
==============================================================================
--- trunk/tools/dev/install_dev_files.pl	Sun May 24 12:42:07 2009	(r39149)
+++ trunk/tools/dev/install_dev_files.pl	Sun May 24 13:20:00 2009	(r39150)
@@ -187,19 +187,15 @@
 }
 print("Installing ...\n");
 foreach ( @files, @installable_exe ) {
-#print STDERR "jo\n";
     my ( $src, $dest ) = @$_;
     $dest = $options{destdir} . $dest;
-#print STDERR "s,d: $src\n     $dest\n";
     if ( $options{'dry-run'} ) {
         print "$src -> $dest\n";
         next;
     }
     else {
-#print STDERR "Before copy: $dest\n";
         next unless -e $src;
         copy( $src, $dest ) or die "copy $src to $dest: $!\n";
-#print STDERR "After copy: $dest\n";
         print "$dest\n";
     }
     my $mode = ( stat($src) )[2];


More information about the parrot-commits mailing list