Changeset 8165

Show
Ignore:
Timestamp:
08/13/08 15:10:03 (5 years ago)
Author:
jawil06
Message:

Installing tools is now a two step process, tools are build with user permissions, then installed as root.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • ossiedev/trunk/build.py

    r8144 r8165  
    142142    # build tools 
    143143    os.chdir(cwd + os.path.sep + 'tools') 
    144     if (os.system('python setup.py install') != 0): 
     144    if (os.system('python setup.py build') != 0): 
    145145        Abort("ERROR: building tools failed") 
     146    if (os.system('sudo python setup.py install') != 0): 
     147        Abort("ERROR: installing tools failed") 
    146148 
    147149    print "\n" + "*"*60 + "\n"