diff options
author | fanquake <fanquake@gmail.com> | 2022-04-25 10:03:00 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-04-25 10:03:45 +0100 |
commit | 10a626a1d6776447525f50d3e1a97b3c5bbad7d6 (patch) | |
tree | 08fc177a46b8f74b91f5a8c67372919e0a9c77db /contrib | |
parent | aa54132bac3b604035dfc46823e3367c218f8510 (diff) | |
parent | 914076ed5ffd644581600322bf911f13eb839951 (diff) |
Merge bitcoin/bitcoin#24955: guix: Improve error message about missed macOS SDK
914076ed5ffd644581600322bf911f13eb839951 guix: Improve error message about missed macOS SDK (Hennadii Stepanov)
Pull request description:
The error message now mentions another option for users to specify the path to the macOS SDK.
ACKs for top commit:
fanquake:
ACK 914076ed5ffd644581600322bf911f13eb839951
Tree-SHA512: e8b9a6c8aa984f02cdb4ad1eeb6c22510c0c74c47c831104ac410ef68b3bc40024a52400b5065a3e25603f8a040e72c8c464436cb9a0a018ca73b0d28e0d609d
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/guix/guix-build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/guix/guix-build b/contrib/guix/guix-build index c8f2e40f0a..74b24b9612 100755 --- a/contrib/guix/guix-build +++ b/contrib/guix/guix-build @@ -132,7 +132,7 @@ for host in $HOSTS; do echo "Found macOS SDK at '${OSX_SDK}', using..." break else - echo "macOS SDK does not exist at '${OSX_SDK}', please place the extracted, untarred SDK there to perform darwin builds, exiting..." + echo "macOS SDK does not exist at '${OSX_SDK}', please place the extracted, untarred SDK there to perform darwin builds, or define SDK_PATH environment variable. Exiting..." exit 1 fi ;; |