This commit is contained in:
Daniel
2019-12-23 23:45:28 +01:00
parent 012ac23a18
commit d48d954168
+2 -2
View File
@@ -216,8 +216,8 @@ elif [ "${AUTOBUILD}" ]; then
elif [ "${METHOD}" = "glibc" ]; then elif [ "${METHOD}" = "glibc" ]; then
export buildnewlib="0" export buildnewlib="0"
for i in ${targets}; do for i in ${targets}; do
if [ "`echo ${i} | cut -f 3 -d -`" = "eabi" ]; then continue; fi if echo ${i} | grep -q "eabi"; then continue; fi
if [ "`echo ${i} | cut -f 3 -d -`" = "elf" ]; then continue; fi if echo ${i} | grep -q "elf"; then continue; fi
runit ${i} 32 runit ${i} 32
runit ${i} 64 runit ${i} 64
done done