diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2023-12-25 10:38:04 -0500 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2023-12-25 10:48:54 -0500 |
commit | 9b6765bfc0dcd7e2620f4fe1fe1b17501b659cb7 (patch) | |
tree | 33b98efa474e849ff8f9e0aa88143b7e11723d72 /dev-python/PyQt6 | |
parent | kernel-{build,install}.eclass: drop plymouth for generic-uki (diff) | |
download | gentoo-9b6765bfc0dcd7e2620f4fe1fe1b17501b659cb7.tar.gz gentoo-9b6765bfc0dcd7e2620f4fe1fe1b17501b659cb7.tar.bz2 gentoo-9b6765bfc0dcd7e2620f4fe1fe1b17501b659cb7.zip |
dev-python/PyQt6: adjust qmake hack comment
Was looking for a better workaround for this, but then realized
that it did not fail for the reason I thought it did.
Perhaps could be improved in PyQt-builder.
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'dev-python/PyQt6')
-rw-r--r-- | dev-python/PyQt6/PyQt6-6.6.1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-python/PyQt6/PyQt6-6.6.1.ebuild b/dev-python/PyQt6/PyQt6-6.6.1.ebuild index 082de8da926a..328355759d54 100644 --- a/dev-python/PyQt6/PyQt6-6.6.1.ebuild +++ b/dev-python/PyQt6/PyQt6-6.6.1.ebuild @@ -91,9 +91,9 @@ PATCHES=( src_prepare() { default - # hack: qmake queries g++ or clang++ for info depending on which qtbase was - # built with, but ignores CHOST failing with -native-symlinks (bug #726112) - # and potentially using wrong information when cross-compiling + # hack: PyQt-builder runs qmake without our arguments and calls g++ + # or clang++ depending on what qtbase was built with, not used for + # building but fails with -native-symlinks mkdir "${T}"/cxx || die local cxx ! cxx=$(type -P "${CHOST}"-g++) || ln -s -- "${cxx}" "${T}"/cxx/g++ || die |