diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2023-12-25 10:39:02 -0500 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2023-12-25 10:48:55 -0500 |
commit | aa8d428fd0e4c61000c8ccbfbd72b777c3870c6f (patch) | |
tree | 80f3b56734e601b47aa949217bccfc068c3a8a5c /dev-python/PyQt6-WebEngine | |
parent | dev-python/PyQt6: adjust qmake hack comment (diff) | |
download | gentoo-aa8d428fd0e4c61000c8ccbfbd72b777c3870c6f.tar.gz gentoo-aa8d428fd0e4c61000c8ccbfbd72b777c3870c6f.tar.bz2 gentoo-aa8d428fd0e4c61000c8ccbfbd72b777c3870c6f.zip |
dev-python/PyQt6-WebEngine: 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-WebEngine')
-rw-r--r-- | dev-python/PyQt6-WebEngine/PyQt6-WebEngine-6.6.0.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-python/PyQt6-WebEngine/PyQt6-WebEngine-6.6.0.ebuild b/dev-python/PyQt6-WebEngine/PyQt6-WebEngine-6.6.0.ebuild index a23756c616ea..15bbe5672ea4 100644 --- a/dev-python/PyQt6-WebEngine/PyQt6-WebEngine-6.6.0.ebuild +++ b/dev-python/PyQt6-WebEngine/PyQt6-WebEngine-6.6.0.ebuild @@ -39,9 +39,9 @@ BDEPEND=" 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 |