comparison host-tools.sh @ 1769:cb94b575c2d2 draft

Switch from ash (which #errors building nommu) to hush.
author Rob Landley <rob@landley.net>
date Wed, 10 Jun 2015 11:24:42 -0500
parents b89324905ca2
children 315c9e9af893
comparison
equal deleted inserted replaced
1768:8fc7542bc770 1769:cb94b575c2d2
91 # This is a little more complicated than it needs to be, because the host 91 # This is a little more complicated than it needs to be, because the host
92 # toolchain may be using ccache and/or distcc, which means we need every 92 # toolchain may be using ccache and/or distcc, which means we need every
93 # instance of these tools that occurs in the $PATH, in order, each in its 93 # instance of these tools that occurs in the $PATH, in order, each in its
94 # own fallback directory. 94 # own fallback directory.
95 95
96 for i in ar as nm cc make ld gcc objdump $HOST_EXTRA 96 for i in ar as nm cc make ld gcc objdump sh $HOST_EXTRA
97 do 97 do
98 if [ ! -f "$STAGE_DIR/$i" ] 98 if [ ! -f "$STAGE_DIR/$i" ]
99 then 99 then
100 # Loop through each instance, populating fallback directories. 100 # Loop through each instance, populating fallback directories.
101 101