Changeset 8136

Show
Ignore:
Timestamp:
08/06/08 14:21:40 (5 years ago)
Author:
shereef
Message:

setup.py now copies CC.py and uuidgen.py into /sdr/tools/alf

Location:
ossiedev/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • ossiedev/trunk/build.py

    r8104 r8136  
    141141 
    142142    # build tools 
    143     os.chdir(cwd + os.path.sep + 'tools') 
    144     if (os.system('python setup.py install') != 0): 
    145         Abort("ERROR: building tools failed") 
     143#    os.chdir(cwd + os.path.sep + 'tools') 
     144#    if (os.system('python setup.py install') != 0): 
     145#        Abort("ERROR: building tools failed") 
    146146 
    147147    print "\n" + "*"*60 + "\n" 
  • ossiedev/trunk/tools/setup.py

    r8131 r8136  
    99        sys.exit(1) 
    1010 
    11 sys.argv.append('--install-lib='+install_location) 
     11#sys.argv.append('--install-lib='+install_location) 
    1212 
    1313setup( 
    1414      name='ossietools',  
    1515      description='ossietools', 
     16      packages=['WaveDev', 'WaveDev/wavedev'], 
    1617      data_files=[ 
    1718                  (install_location+'alf', 
     
    2122                         'alf/connectTool.py', 'alf/toolconfig.xml', 
    2223                         'alf/ALFutils.py', 'alf/importWaveform.py', 
    23                          'alf/loadAutomationFile.py']), 
     24                         'alf/loadAutomationFile.py', 
     25                         'WaveDev/wavedev/ComponentClass.py', 
     26                         'WaveDev/wavedev/uuidgen.py']), 
    2427                  (install_location+'alf/automationFileExamples', 
    2528                        ['alf/automationFileExamples/example1.xml']),