Changeset 774
- Timestamp:
- 12/23/07 13:50:24 (15 years ago)
- Files:
-
- trunk/libffado/SConstruct (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/SConstruct
r771 r774 131 131 tests.update( env['PYUIC_TESTS'] ) 132 132 133 conf = Configure( env, 134 custom_tests = tests, 135 conf_dir = "cache/" + build_base, 136 log_file = "cache/" + build_base + 'config.log' ) 137 133 138 if 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 139 139 # 140 140 # Check if the environment can actually compile c-files by checking for a … … 180 180 env['ALSA_SEQ_OUTPUT'] = conf.CheckLib( 'asound', symbol='snd_seq_event_output_direct', autoadd=0 ) 181 181 182 config_guess = conf.ConfigGuess() 183 184 if conf.PyQtCheck(): 185 env['PYUIC'] = True 186 187 182 if conf.PyQtCheck(): 183 env['PYUIC'] = True 184 185 config_guess = conf.ConfigGuess() 186 187 env = conf.Finish() 188 188 189 189 if env['DEBUG']: