diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-03-23 20:45:28 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-03-23 20:52:08 +0100 |
commit | 8feae96d231bafbf1bdb6d924bd65b0ab354f396 (patch) | |
tree | 4ee190415a51a514a8c28da07ba2c3e29bb99e32 /net-libs | |
parent | gui-libs/wpebackend-fdo: Version bump to 1.14.2 (diff) | |
download | gentoo-8feae96d231bafbf1bdb6d924bd65b0ab354f396.tar.gz gentoo-8feae96d231bafbf1bdb6d924bd65b0ab354f396.tar.bz2 gentoo-8feae96d231bafbf1bdb6d924bd65b0ab354f396.zip |
net-libs/accounts-qt: Fix path to qhelpgenerator
Closes: https://bugs.gentoo.org/872047
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/accounts-qt/accounts-qt-1.16.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net-libs/accounts-qt/accounts-qt-1.16.ebuild b/net-libs/accounts-qt/accounts-qt-1.16.ebuild index e2767e2a5a1e..9614b92cac2c 100644 --- a/net-libs/accounts-qt/accounts-qt-1.16.ebuild +++ b/net-libs/accounts-qt/accounts-qt-1.16.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -39,6 +39,8 @@ src_prepare() { sed -e "s|share/doc/\$\${PROJECT_NAME}|share/doc/${PF}|" \ -i doc/doc.pri || die + sed -e "/QHG_LOCATION/s|qhelpgenerator|$(qt5_get_bindir)/&|" \ + -i doc/doxy.conf || die if ! use doc; then sed -e "/include( doc\/doc.pri )/d" -i ${PN}.pro || die fi |