diff options
author | Howard Chu <hyc@symas.com> | 2022-05-09 19:47:33 +0100 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2022-05-10 21:06:03 +0100 |
commit | 5c27fd853f17d12ae6ab94cb01e3ced7cc710e1c (patch) | |
tree | 0e5292ea87994cb9e47f48af3fa7ae29db3277d9 /contrib/depends/hosts/darwin.mk | |
parent | Update randomx: fix Mac linking error (diff) | |
download | monero-5c27fd853f17d12ae6ab94cb01e3ced7cc710e1c.tar.xz |
depends: Package cleanup
All patching should be in _preprocess_cmd. config_cmd should just run
configure and nothing else before it, otherwise $PATH is broken when it runs.
Also remove redundant settings to configure, _autoconf already sets them.
We leave explicit AR_FLAGS settings because the builtin rule uses ARFLAGS,
and so would leave AR_FLAGS unset otherwise.
Diffstat (limited to 'contrib/depends/hosts/darwin.mk')
-rw-r--r-- | contrib/depends/hosts/darwin.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/depends/hosts/darwin.mk b/contrib/depends/hosts/darwin.mk index d8b16f969..79d449054 100644 --- a/contrib/depends/hosts/darwin.mk +++ b/contrib/depends/hosts/darwin.mk @@ -1,7 +1,7 @@ OSX_MIN_VERSION=10.8 LD64_VERSION=609 ifeq (aarch64, $(host_arch)) -CC_target=arm64-apple-darwin11 +CC_target=arm64-apple-$(host_os) else CC_target=$(host) endif |