Skip to content

Commit 2aa48ed

Browse files
committed
refactor: Drop unused ${WRAP_DIR}/${HOST} directory
This commit removes the directory that is no longer used since #16667.
1 parent 1362be0 commit 2aa48ed

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

contrib/gitian-descriptors/gitian-win.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,11 @@ script: |
7676
function create_per-host_compiler_wrapper {
7777
# -posix variant is required for c++11 threading.
7878
for i in $HOSTS; do
79-
mkdir -p ${WRAP_DIR}/${i}
8079
for prog in gcc g++; do
8180
echo '#!/usr/bin/env bash' > ${WRAP_DIR}/${i}-${prog}
8281
echo "REAL=\`which -a ${i}-${prog}-posix | grep -v ${WRAP_DIR}/${i}-${prog} | head -1\`" >> ${WRAP_DIR}/${i}-${prog}
8382
echo "export LD_PRELOAD='/usr/\$LIB/faketime/libfaketime.so.1'" >> ${WRAP_DIR}/${i}-${prog}
8483
echo "export FAKETIME=\"$1\"" >> ${WRAP_DIR}/${i}-${prog}
85-
echo "export COMPILER_PATH=${WRAP_DIR}/${i}" >> ${WRAP_DIR}/${i}-${prog}
8684
echo "\$REAL \$@" >> $WRAP_DIR/${i}-${prog}
8785
chmod +x ${WRAP_DIR}/${i}-${prog}
8886
done

0 commit comments

Comments
 (0)