diff options
| author | Hennadii Stepanov <[email protected]> | 2020-04-07 21:49:54 +0300 |
|---|---|---|
| committer | Hennadii Stepanov <[email protected]> | 2020-04-17 16:09:11 +0300 |
| commit | 2aa48edec0101f8a77a2189244fc62722ff7a123 (patch) | |
| tree | e6ee29c5685077c3f86e60c046425d0bc6dba31a | |
| parent | build: Drop make dist in gitian builds (diff) | |
| download | discoin-2aa48edec0101f8a77a2189244fc62722ff7a123.tar.xz discoin-2aa48edec0101f8a77a2189244fc62722ff7a123.zip | |
refactor: Drop unused ${WRAP_DIR}/${HOST} directory
This commit removes the directory that is no longer used since #16667.
| -rw-r--r-- | contrib/gitian-descriptors/gitian-win.yml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/contrib/gitian-descriptors/gitian-win.yml b/contrib/gitian-descriptors/gitian-win.yml index 27cf6e84c..779de45df 100644 --- a/contrib/gitian-descriptors/gitian-win.yml +++ b/contrib/gitian-descriptors/gitian-win.yml @@ -76,13 +76,11 @@ script: | function create_per-host_compiler_wrapper { # -posix variant is required for c++11 threading. for i in $HOSTS; do - mkdir -p ${WRAP_DIR}/${i} for prog in gcc g++; do echo '#!/usr/bin/env bash' > ${WRAP_DIR}/${i}-${prog} echo "REAL=\`which -a ${i}-${prog}-posix | grep -v ${WRAP_DIR}/${i}-${prog} | head -1\`" >> ${WRAP_DIR}/${i}-${prog} echo "export LD_PRELOAD='/usr/\$LIB/faketime/libfaketime.so.1'" >> ${WRAP_DIR}/${i}-${prog} echo "export FAKETIME=\"$1\"" >> ${WRAP_DIR}/${i}-${prog} - echo "export COMPILER_PATH=${WRAP_DIR}/${i}" >> ${WRAP_DIR}/${i}-${prog} echo "\$REAL \$@" >> $WRAP_DIR/${i}-${prog} chmod +x ${WRAP_DIR}/${i}-${prog} done |