]> git.vpit.fr Git - perl/modules/CPANPLUS-Dist-Gentoo.git/commitdiff
Better handling of $file in ->update_manifest
authorVincent Pit <vince@profvince.com>
Sun, 6 Sep 2009 19:45:12 +0000 (21:45 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 6 Sep 2009 19:45:12 +0000 (21:45 +0200)
lib/CPANPLUS/Dist/Gentoo.pm

index 7febab9097f0f6e5e07d16b2e78db498f0f5b029..8a75c24e09e546feba90ed628a26fb6631aa2a90 100644 (file)
@@ -413,7 +413,7 @@ sub update_manifest {
  my $stat = $self->status;
 
  my $file = $stat->ebuild_file;
- unless ($file and -e $file) {
+ unless (defined $file and -e $file) {
   return $self->_abort('The ebuild file is invalid or does not exist');
  }
 
@@ -423,7 +423,7 @@ sub update_manifest {
 
  $self->_notify('Adding Manifest entry for', $stat->distribution);
 
- return $self->_run([ 'ebuild', $stat->ebuild_file, 'manifest' ], 0);
+ return $self->_run([ 'ebuild', $file, 'manifest' ], 0);
 }
 
 =head2 C<ebuild_source>