Changeset 56bc5e7 in sasview


Ignore:
Timestamp:
Nov 22, 2017 10:33:37 AM (6 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
master, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
b6b81a3
Parents:
1606b35
Message:

Revert "rebuild C code during run.py if it has changed"

This reverts commit 0e17b31fdda502440f85b93f8cb2a1f4a02ef6e2.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • run.py

    r1606b35 r56bc5e7  
    112112 
    113113    # Build project if the build directory does not already exist. 
    114     # PAK: with "update" we can always build since it is fast 
    115     if True or not os.path.exists(build_path): 
     114    if not os.path.exists(build_path): 
    116115        import subprocess 
    117116        with cd(root): 
    118             subprocess.call((sys.executable, "setup.py", "build", "update"), shell=False) 
     117            subprocess.call((sys.executable, "setup.py", "build"), shell=False) 
    119118 
    120119    # Put the source trees on the path 
Note: See TracChangeset for help on using the changeset viewer.