Ignore:
Timestamp:
Feb 18, 2009, 1:50:02 AM (15 years ago)
Author:
Bruno Cornec
Message:
  • Fix a bug in distro for dep install on deb type of distro
  • Adds a basic network config file for VE when not available
File:
1 edited

Legend:

Unmodified
Added
Removed
  • devel/pb-modules/lib/ProjectBuilder/Distribution.pm

    r683 r696  
    386386    # In RPM this could include files, but we do not handle them atm.
    387387    $regexp = '^BuildRequires:(.*)$';
    388 } elsif ($dtype eq "du") {
     388} elsif ($dtype eq "deb") {
    389389    $regexp = '^Build-Depends:(.*)$';
    390390} elsif ($dtype eq "ebuild") {
     
    450450        my $res = pb_system("rpm -q --whatprovides --quiet $p","","quiet");
    451451        next if ($res eq 0);
    452     } elsif ($dtype eq "du") {
     452    } elsif ($dtype eq "deb") {
    453453        my $res = pb_system("dpkg -L $p","","quiet");
    454454        next if ($res eq 0);
Note: See TracChangeset for help on using the changeset viewer.