gcc: fix c89/c99 scripts

remove the bogus escape of the $ character
This commit is contained in:
Steve Lhomme
2017-04-27 17:19:42 +02:00
parent daef5ae97e
commit 955c307d76

View File

@@ -296,7 +296,7 @@ for opt; do
exit 1;;
esac
done
exec /usr/bin/gcc \$fl \${1+"\$@"}
exec /usr/bin/gcc $fl ${1+"$@"}
EOF
cat > ${pkgdir}/usr/bin/c99 <<"EOF"
@@ -309,7 +309,7 @@ for opt; do
exit 1;;
esac
done
exec /usr/bin/gcc \$fl \${1+"\$@"}
exec /usr/bin/gcc $fl ${1+"$@"}
EOF
chmod 755 ${pkgdir}/usr/bin/c{8,9}9