mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-20 20:16:26 +02:00
pkg(all): replace $* with "$@"
This commit is contained in:
parent
55f45e05bc
commit
d0f8932722
18 changed files with 22 additions and 22 deletions
4
packages/nasm/2.15.5/compile
vendored
4
packages/nasm/2.15.5/compile
vendored
|
@ -5,11 +5,11 @@
|
|||
|
||||
case "${PISTON_ALIAS}" in
|
||||
nasm)
|
||||
nasm -f elf32 -o binary.o $*
|
||||
nasm -f elf32 -o binary.o "$@"
|
||||
ld -m elf_i386 binary.o -o binary
|
||||
;;
|
||||
nasm64)
|
||||
nasm -f elf64 -o binary.o $*
|
||||
nasm -f elf64 -o binary.o "$@"
|
||||
ld -m elf_x86_64 binary.o -o binary
|
||||
;;
|
||||
*)
|
||||
|
|
2
packages/nasm/2.15.5/run
vendored
2
packages/nasm/2.15.5/run
vendored
|
@ -2,4 +2,4 @@
|
|||
|
||||
# Put instructions to run the runtime
|
||||
shift
|
||||
./binary $*
|
||||
./binary "$@"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue