On Wed May 02 19:33:17 2007, jkeen <!-- x --> at verizon.net wrote:
> See attached patch revision.patch.txt.  Per discussion on list with
> particle, lib/Parrot/
> Revision.pm is revised to eliminate unassignable variable $svn_entries
> and one stanza of
> code associated therewith.  Also eliminates unused variable $ent.  I
> also add 4 test files:  two
> in t/configure/ and two in t/postconfigure/.  The latter tests are
> intended to be run after
> Configure.pl has run because they presume the existence of
> lib/Parrot/Config/
> Generated.pm; they SKIP otherwise.
> 

I see that I should have also patched config/gen/revision.pm to eliminate this 
line:

    my $entries  = $Parrot::Revision::svn_entries;
...
        SVN_ENTRIES => $entries

The patch attached accomplishes this.

kid51

Index: config/gen/revision.pm
===================================================================
--- config/gen/revision.pm      (revision 18523)
+++ config/gen/revision.pm      (working copy)
@@ -28,11 +28,9 @@
     my ( $self, $conf ) = @_;
 
     my $revision = $Parrot::Revision::current;
-    my $entries  = $Parrot::Revision::svn_entries;
 
     $conf->data->set(
         revision    => $revision,
-        SVN_ENTRIES => $entries
     );
 
     if ( $revision >= 1 ) {

Reply via email to