Changeset 521

Show
Ignore:
Timestamp:
08/16/07 13:41:19 (16 years ago)
Author:
arnonym
Message:

Move the helpers into their own directory (named "admin") so they don't clutter the base-dir

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/libffado-scons_porting_work/SConstruct

    r519 r521  
    22 
    33import os 
     4import sys 
     5sys.path.append( "./admin" ) 
     6from pkgconfig import * 
    47 
    58opts = Options( "cache/options.cache" ) 
     
    1720 
    1821## Load the builders in config 
    19 env = Environment( tools=['default','scanreplace','pyuic'], toolpath=['.'], ENV = { 'PATH' : os.environ['PATH'], 'PKG_CONFIG_PATH' : os.environ['PKG_CONFIG_PATH'] }, options=opts ) 
     22env = Environment( tools=['default','scanreplace','pyuic'], toolpath=['admin'], ENV = { 'PATH' : os.environ['PATH'], 'PKG_CONFIG_PATH' : os.environ['PKG_CONFIG_PATH'] }, options=opts ) 
    2023 
    2124Help( """ 
     
    3740env['CFLAGS']+="-Wall -g -fpic" 
    3841 
    39  
    40  
    41 from pkgconfig import * 
    4242 
    4343if not env.GetOption('clean'):