Changeset 774

Show
Ignore:
Timestamp:
12/23/07 13:50:24 (15 years ago)
Author:
arnonym
Message:

Some configure-steps are needed for uninstall too.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/SConstruct

    r771 r774  
    131131tests.update( env['PYUIC_TESTS'] ) 
    132132 
     133conf = Configure( env, 
     134        custom_tests = tests, 
     135        conf_dir = "cache/" + build_base, 
     136        log_file = "cache/" + build_base + 'config.log' ) 
     137 
    133138if not env.GetOption('clean'): 
    134         conf = Configure( env, 
    135                 custom_tests = tests, 
    136                 conf_dir = "cache/" + build_base, 
    137                 log_file = "cache/" + build_base + 'config.log' ) 
    138  
    139139        # 
    140140        # Check if the environment can actually compile c-files by checking for a 
     
    180180        env['ALSA_SEQ_OUTPUT'] = conf.CheckLib( 'asound', symbol='snd_seq_event_output_direct', autoadd=0 ) 
    181181 
    182         config_guess = conf.ConfigGuess() 
    183  
    184         if conf.PyQtCheck(): 
    185                 env['PYUIC'] = True 
    186  
    187        env = conf.Finish() 
     182if conf.PyQtCheck(): 
     183        env['PYUIC'] = True 
     184 
     185config_guess = conf.ConfigGuess() 
     186 
     187env = conf.Finish() 
    188188 
    189189if env['DEBUG']: