Changeset 1694

Show
Ignore:
Timestamp:
10/17/09 12:15:36 (14 years ago)
Author:
arnonym
Message:

Process the dbus-service file even if it can't be installed. That way one can copy it by hand and have the ffado-dbus-server start automaticly when ffado-mixer starts. Or when some other app requests that service.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/support/dbus/SConscript

    r1493 r1694  
    6767        env.Install( "$bindir", app ) 
    6868 
     69servicefile = env.ScanReplace('org.ffado.Control.service.in') 
    6970if env['dbus_service_dir'] and ( env.destdir or os.access( env['dbus_service_dir'], os.W_OK ) ): 
    7071    print "Will install the service-file" 
    71     servicefile = env.ScanReplace('org.ffado.Control.service.in') 
    7272    targetdir = env.destdir + env['dbus_service_dir'] 
    7373    env.Alias( "install", env.Install( env.destdir + env['dbus_service_dir'], servicefile ) )