mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-21 19:41:15 +00:00
fix argument with spaces handling in triple prefixed tool wrappers
This commit is contained in:
parent
02089a71d0
commit
2f796a5817
22 changed files with 22 additions and 22 deletions
2
deps/system/bin/aarch64-apple-darwin-ar
vendored
2
deps/system/bin/aarch64-apple-darwin-ar
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
ar $*
|
ar "$@"
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
dsymutil --arch=arm64 $*
|
dsymutil --arch=arm64 "$@"
|
||||||
|
|
2
deps/system/bin/aarch64-apple-darwin-g++
vendored
2
deps/system/bin/aarch64-apple-darwin-g++
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
g++ -arch arm64 $*
|
g++ -arch arm64 "$@"
|
||||||
|
|
2
deps/system/bin/aarch64-apple-darwin-gcc
vendored
2
deps/system/bin/aarch64-apple-darwin-gcc
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
gcc -arch arm64 $*
|
gcc -arch arm64 "$@"
|
||||||
|
|
2
deps/system/bin/aarch64-apple-darwin-lipo
vendored
2
deps/system/bin/aarch64-apple-darwin-lipo
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
lipo $*
|
lipo "$@"
|
||||||
|
|
2
deps/system/bin/aarch64-apple-darwin-nm
vendored
2
deps/system/bin/aarch64-apple-darwin-nm
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
nm -arch arm64 $*
|
nm -arch arm64 "$@"
|
||||||
|
|
2
deps/system/bin/aarch64-apple-darwin-nmedit
vendored
2
deps/system/bin/aarch64-apple-darwin-nmedit
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
nmedit -arch arm64 $*
|
nmedit -arch arm64 "$@"
|
||||||
|
|
2
deps/system/bin/aarch64-apple-darwin-objdump
vendored
2
deps/system/bin/aarch64-apple-darwin-objdump
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
objdump --arch=arm64 $*
|
objdump --arch=arm64 "$@"
|
||||||
|
|
2
deps/system/bin/aarch64-apple-darwin-otool
vendored
2
deps/system/bin/aarch64-apple-darwin-otool
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
otool -arch arm64 $*
|
otool -arch arm64 "$@"
|
||||||
|
|
2
deps/system/bin/aarch64-apple-darwin-ranlib
vendored
2
deps/system/bin/aarch64-apple-darwin-ranlib
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
ranlib $*
|
ranlib "$@"
|
||||||
|
|
2
deps/system/bin/aarch64-apple-darwin-strip
vendored
2
deps/system/bin/aarch64-apple-darwin-strip
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
strip -arch arm64 $*
|
strip -arch arm64 "$@"
|
||||||
|
|
2
deps/system/bin/x86_64-apple-darwin-ar
vendored
2
deps/system/bin/x86_64-apple-darwin-ar
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
ar $*
|
ar "$@"
|
||||||
|
|
2
deps/system/bin/x86_64-apple-darwin-dsymutil
vendored
2
deps/system/bin/x86_64-apple-darwin-dsymutil
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
dsymutil --arch=x86_64 $*
|
dsymutil --arch=x86_64 "$@"
|
||||||
|
|
2
deps/system/bin/x86_64-apple-darwin-g++
vendored
2
deps/system/bin/x86_64-apple-darwin-g++
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
g++ -arch x86_64 $*
|
g++ -arch x86_64 "$@"
|
||||||
|
|
2
deps/system/bin/x86_64-apple-darwin-gcc
vendored
2
deps/system/bin/x86_64-apple-darwin-gcc
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
gcc -arch x86_64 $*
|
gcc -arch x86_64 "$@"
|
||||||
|
|
2
deps/system/bin/x86_64-apple-darwin-lipo
vendored
2
deps/system/bin/x86_64-apple-darwin-lipo
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
lipo $*
|
lipo "$@"
|
||||||
|
|
2
deps/system/bin/x86_64-apple-darwin-nm
vendored
2
deps/system/bin/x86_64-apple-darwin-nm
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
nm -arch x86_64 $*
|
nm -arch x86_64 "$@"
|
||||||
|
|
2
deps/system/bin/x86_64-apple-darwin-nmedit
vendored
2
deps/system/bin/x86_64-apple-darwin-nmedit
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
nmedit -arch x86_64 $*
|
nmedit -arch x86_64 "$@"
|
||||||
|
|
2
deps/system/bin/x86_64-apple-darwin-objdump
vendored
2
deps/system/bin/x86_64-apple-darwin-objdump
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
objdump --arch=x86_64 $*
|
objdump --arch=x86_64 "$@"
|
||||||
|
|
2
deps/system/bin/x86_64-apple-darwin-otool
vendored
2
deps/system/bin/x86_64-apple-darwin-otool
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
otool -arch x86_64 $*
|
otool -arch x86_64 "$@"
|
||||||
|
|
2
deps/system/bin/x86_64-apple-darwin-ranlib
vendored
2
deps/system/bin/x86_64-apple-darwin-ranlib
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
ranlib $*
|
ranlib "$@"
|
||||||
|
|
2
deps/system/bin/x86_64-apple-darwin-strip
vendored
2
deps/system/bin/x86_64-apple-darwin-strip
vendored
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
strip -arch x86_64 $*
|
strip -arch x86_64 "$@"
|
||||||
|
|
Loading…
Reference in a new issue