Changeset 5b78566 in sasview


Ignore:
Timestamp:
Apr 28, 2010 11:33:33 AM (14 years ago)
Author:
Mathieu Doucet <doucetm@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
017ec0b7
Parents:
3d01a1e
Message:

sansview: added option to setup script [fix]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansview/setup_exe.py

    r3d01a1e r5b78566  
    1717 
    1818# When using the SansView build script, we need to be able to pass 
    19 # an extra path to be added to the python path. 
     19# an extra path to be added to the python path. The extra arguments 
     20# should be removed from the list so that the setup processing doesn't 
     21# fail. 
    2022try: 
    21         if sys.argv.count('--extrapath'): 
    22                 path_flag_idx = sys.argv.index('--extrapath') 
    23                 extra_path = sys.argv[path_flag_idx+1] 
    24                 sys.path.insert(0, extra_path) 
     23    if sys.argv.count('--extrapath'): 
     24        path_flag_idx = sys.argv.index('--extrapath') 
     25        extra_path = sys.argv[path_flag_idx+1] 
     26        sys.path.insert(0, extra_path) 
     27        del sys.argv[path_flag_idx+1] 
     28        sys.argv.remove('--extrapath') 
    2529except: 
    26         print "Error processing extra python path needed to build SansView" 
     30    print "Error processing extra python path needed to build SansView\n  %s" % sys.exc_value 
    2731 
    2832from distutils.core import setup 
Note: See TracChangeset for help on using the changeset viewer.