diff options
author | MarcoFalke <falke.marco@gmail.com> | 2016-06-12 14:10:55 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2016-06-12 14:22:07 +0200 |
commit | fa61756842d78beeac8e7cffa88767fa3f710510 (patch) | |
tree | 4315561e760c70fadef3ca31a3903dc96448f746 /contrib/gitian-descriptors/gitian-win.yml | |
parent | 3e4cf8fe26440cae179aaca44ccadd476b464994 (diff) |
[gitian] set correct PATH for wrappers
Diffstat (limited to 'contrib/gitian-descriptors/gitian-win.yml')
-rw-r--r-- | contrib/gitian-descriptors/gitian-win.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/gitian-descriptors/gitian-win.yml b/contrib/gitian-descriptors/gitian-win.yml index 1d3a876dfb..32b57b3160 100644 --- a/contrib/gitian-descriptors/gitian-win.yml +++ b/contrib/gitian-descriptors/gitian-win.yml @@ -94,12 +94,12 @@ script: | done } - export PATH=${WRAP_DIR}:${PATH} - # Faketime for depends so intermediate results are comparable + export PATH_orig=${PATH} create_global_faketime_wrappers "2000-01-01 12:00:00" create_per-host_faketime_wrappers "2000-01-01 12:00:00" create_per-host_linker_wrapper "2000-01-01 12:00:00" + export PATH=${WRAP_DIR}:${PATH} cd bitcoin BASEPREFIX=`pwd`/depends @@ -109,9 +109,11 @@ script: | done # Faketime for binaries + export PATH=${PATH_orig} create_global_faketime_wrappers "${REFERENCE_DATETIME}" create_per-host_faketime_wrappers "${REFERENCE_DATETIME}" create_per-host_linker_wrapper "${REFERENCE_DATETIME}" + export PATH=${WRAP_DIR}:${PATH} # Create the release tarball using (arbitrarily) the first host ./autogen.sh |