Skip to content

Commit

Permalink
fix warnings message about conflict for directory
Browse files Browse the repository at this point in the history
  • Loading branch information
yannrouillard committed Oct 31, 2013
1 parent 0e7d1fe commit dab9dcf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions svr4pkg
Original file line number Diff line number Diff line change
Expand Up @@ -1892,6 +1892,10 @@ use 5.010001;
my @conflicts;

foreach my $pkgmap_entry ( @{ $package->get_entries() } ) {

# Directories can be shared between several packages so we don't care
next if ( $pkgmap_entry->is_directory() );

next if ( $self->{package_entry_database}->has_entry( $pkgmap_entry, 1 ) );

if ( $self->{package_entry_database}->has_entry( $pkgmap_entry, 0 )
Expand Down

0 comments on commit dab9dcf

Please sign in to comment.