Changeset 861
- Timestamp:
- 01/19/08 11:50:42 (16 years ago)
- Files:
-
- trunk/libffado/support/mixer/SConscript (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/support/mixer/SConscript
r853 r861 31 31 32 32 e['MIXERAPPS'] = [ 'phase24', 'phase88', 'saffirepro', 'saffire', 'af2', 'bcoaudio5', 'edirolfa66', 'mackie_generic' ] 33 # 34 # For the ffadomixer.in 33 35 e['PYTHONDIR'] = Template( os.path.join( e['SHAREDIR'], 'python' ) ).safe_substitute( e ) 36 # For the installation of the stuff 37 e['pythondir'] = Template( os.path.join( e['sharedir'], 'python' ) ).safe_substitute( e ) 34 38 35 39 for m in e['MIXERAPPS']: … … 37 41 if os.path.exists( app+".ui" ): 38 42 e.PyUIC( source=app+".ui", target=app+"ui.py" ) 39 e.Install( "$ PYTHONDIR", app+"ui.py" )40 e.Install( "$ PYTHONDIR", app+".py" )43 e.Install( "$pythondir", app+"ui.py" ) 44 e.Install( "$pythondir", app+".py" ) 41 45 42 46 e.ScanReplace( "ffadomixer.in" )