diff options
Diffstat (limited to 'data/darwintools/make.sh')
-rw-r--r-- | data/darwintools/make.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/darwintools/make.sh b/data/darwintools/make.sh index cf0191d94..297af9c33 100644 --- a/data/darwintools/make.sh +++ b/data/darwintools/make.sh @@ -3,6 +3,6 @@ cd * pkg: mkdir -p /usr/bin for tool in startupfiletool sw_vers; do - arm-apple-darwin-gcc -o "${tool}" "${tool}.c" -framework CoreFoundation + "${PKG_TARG}-gcc" -o "${tool}" "${tool}.c" -framework CoreFoundation pkg: cp -a "${tool}" /usr/bin done |