Changeset 1551 in ProjectBuilder


Ignore:
Timestamp:
May 21, 2012, 2:41:25 AM (12 years ago)
Author:
Bruno Cornec
Message:
  • pbdistrocheck: remove hack to have common library path and static ref to /usr/share/perl5. That should really be done in the build process if needed not in code (Bruno Cornec)
  • pb: Just create the /etc/sysconfig/network file on rpm based distro not being opensuse (where it is a directory) (Eric Andersson/Bruno Cornec)
  • CMS.pm: drop log level down to 2 this is a pretty irrelevant log message. (Eric Andersson)
Location:
devel
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • devel/pb-modules/bin/pbdistrocheck

    r1528 r1551  
    1313use Data::Dumper;
    1414use lib qw (lib);
    15 use lib '/usr/share/perl5'; # mandatory for opensuse
     15#use lib '/usr/share/perl5'; # mandatory for opensuse
    1616use ProjectBuilder::Distribution;
    1717use ProjectBuilder::Base;
  • devel/pb/bin/pb

    r1550 r1551  
    33653365
    33663366my $nf="/etc/sysconfig/network";
    3367 if ((! -f $nf) && ($pbos->{'type'} eq "rpm")) {
     3367if ((! -f $nf) && ($pbos->{'type'} eq "rpm") && ($pbos->{'family'} ne "novell")) {
    33683368    open(NF,"> $nf") || die "Unable to create $nf";
    33693369    print NF "NETWORKING=yes\n";
  • devel/pb/lib/ProjectBuilder/CMS.pm

    r1537 r1551  
    229229}
    230230
    231 pb_log(1,"pb_cms_get_real_pkg returns $pbpkgreal\n");
     231pb_log(2,"pb_cms_get_real_pkg returns $pbpkgreal\n");
    232232return($pbpkgreal);
    233233}
Note: See TracChangeset for help on using the changeset viewer.