Changeset 1057

Show
Ignore:
Timestamp:
02/09/07 21:40:00 (2 years ago)
Author:
gboggs
Message:

sync the build methods with current

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/wheeljack/build/Build.pm

    r1054 r1057  
    22 
    33package Build; 
    4 our $VERSION = '0.07'; 
     4our $VERSION = '0.08'; 
    55 
    66=head1 NAME 
     
    798798sub inject_footer { 
    799799    my $self = shift; 
     800 
     801    # Do not inject the non-production footer if we are running in 
     802    # debug mode, doing a (local) make or are building an alpha/beta 
     803    # version. 
     804    return if $self->{'debug'} || $self->{'make'} || 
     805        ($self->{'prod'} && !($self->{'beta=s'} || $self->{'alpha=s'})); 
    800806    $self->verbose( 'Entered inject_footer()' ); 
    801807    return if $self->{'prod'} || $self->{'debug'} || $self->{'make'};