This PR:
- Specifies Objective C/C++ compilers for
native_qt
package. - Removes the
-t
option, which is incompatible withmv
on macOS.
Fixes #32208.
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
For details see: https://corecheck.dev/bitcoin/bitcoin/pulls/32215.
See the guideline for information on the review process. A summary of reviews will appear here.
No conflicts as of last run.
This change fixes cross-compilation from macOS to macOS with another
architecture.
149@@ -148,5 +150,5 @@ endef
150
151 define $(package)_postprocess_cmds
152 rm -rf doc/ && \
153- mv -t .. translations/
154+ mv translations/ ..
-t
does is to set the target directory explicitly. So mv translations/ ..
is equivalent.