Ignore:
Timestamp:
05/12/12 01:02:34 (13 months ago)
Author:
bruno
Message:
  • pb.conf: Add support for centos-6: new osrelfile, add initial dependencies, add perl and package dependencies (Eric Anderson)
  • Distribution.pm: Require that we have a functional install command. The old protection code was wrong since without a valid value it defaults to , and if it had been correct would cause installs to silently fail. (Eric Anderson)
  • VE.pm: Run bootstrapping under linux32 (Bruno changed that to setarch) if arch is i386 and host is x86_64/amd64 so that it gets the architecture right. (Eric Anderson)
File:
1 edited

Legend:

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

    r1517 r1519  
    317317my $deps = shift || undef; 
    318318 
     319# Protection 
     320die "Missing install command for $pbos->{name}-$pbos->{version}-$pbos->{arch}" unless (defined $pbos->{install} && $pbos->{install} =~ /\w/); 
    319321pb_apply_conf_proxy($pbos); 
    320 # Protection 
    321 return if (not defined $pbos->{'install'}); 
    322322 
    323323# Get dependencies in the build file if not forced 
Note: See TracChangeset for help on using the changeset viewer.