Changeset 1029

Show
Ignore:
Timestamp:
05/02/07 12:15:11 (19 months ago)
Author:
kake
Message:

Don't print stuff about skipping individual questions (SQLite, Plucene) if we're skipping the config step altogether (thanks Bob).

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/Build.PL

    r1028 r1029  
    120120         ( $var eq "dbuser" or $var eq "dbpass" or $var eq "dbhost" ) 
    121121       ) { 
    122         print "$var not relevant for SQLite... skipping...\n"; 
     122        print "$var not relevant for SQLite... skipping...\n" 
     123            unless $skip_config; 
    123124        push @answers, { question => $qu, 
    124125                            variable => $var, 
     
    130131    # deprecated 
    131132    if ( $var eq "use_plucene" and $existing_config->$var == 1) { 
    132         print "Skipping question about plucene\n"; 
     133        print "Skipping question about plucene\n" 
     134            unless $skip_config; 
    133135        push @answers, { question => $qu, 
    134136                         variable => $var,