pkg(all): replace $* with "$@"

This commit is contained in:
Thomas Hobson 2021-03-14 15:11:33 +13:00
parent 55f45e05bc
commit d0f8932722
No known key found for this signature in database
GPG key ID: 9F1FD9D87950DB6F
18 changed files with 22 additions and 22 deletions

View file

@ -5,16 +5,16 @@
case "${PISTON_ALIAS}" in
gcc | c)
gcc -std=c11 $* -lm
gcc -std=c11 "$@" -lm
;;
g++ | c++ | cpp)
g++ -std=c++17 $*
g++ -std=c++17 "$@"
;;
gccgo | go)
gccgo $*
gccgo "$@"
;;
gdc | d)
gdc $*
gdc "$@"
;;
*)
echo "How did you get here? (${PISTON_ALIAS})"