1 2 3# (this gets appended; not a patch) 4 5# Make this work for building even when the install is moved. 6import sys 7prefix = build_time_vars['prefix'] 8for key, val in build_time_vars.items(): 9 if isinstance(val, str): 10 build_time_vars[key] = val.replace(prefix, sys.prefix) 11 12 13 14