File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,6 @@ function sanitize_option() {
6969}
7070
7171cmd=()
72- tmpfiles=()
7372for (( i = 0 ; i <= $# ; i++ )) ; do
7473 if [[ ${! i} == @* && -r " ${i: 1} " ]]; then
7574 # Create a new, sanitized file.
@@ -79,8 +78,8 @@ for ((i = 0; i <= $#; i++)); do
7978 echo " $(
8079 set -e
8180 sanitize_option " ${opt} "
82- ) " >> " ${tmpfile} "
83- done < " ${! i: 1} "
81+ ) " >> " ${tmpfile} "
82+ done < " ${! i: 1} "
8483 cmd+=(" @${tmpfile} " )
8584 else
8685 opt=" $(
Original file line number Diff line number Diff line change @@ -100,12 +100,12 @@ for ((i = 0; i <= $#; i++)); do
100100 CLEANUP_FILES+=(" ${tmpfile} " )
101101 while IFS= read -r opt; do
102102 if [[ ${opt} == " -fuse-ld=ld64.lld" ]]; then
103- echo " -fuse-ld=lld" >> ${tmpfile}
103+ echo " -fuse-ld=lld" >> ${tmpfile}
104104 fi
105105 parse_option " $(
106106 set -e
107107 sanitize_option " ${opt} "
108- ) " >> ${tmpfile}
108+ ) " >> ${tmpfile}
109109 done < " ${! i: 1} "
110110 cmd+=(" @${tmpfile} " )
111111 else
You can’t perform that action at this time.
0 commit comments