diff options
author | Ulrich Müller <ulm@gentoo.org> | 2018-02-14 21:59:19 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2018-02-14 21:59:19 +0100 |
commit | be23a9b584a5ac3bd1b6ea046b0f7d90e930a534 (patch) | |
tree | 455b27355bd8bd4d37dd2efce043620800be4650 /dev-db/qt5-sqlcipher | |
parent | sci-libs/liborigin: Switch to Qt5 build (diff) | |
download | gentoo-be23a9b584a5ac3bd1b6ea046b0f7d90e930a534.tar.gz gentoo-be23a9b584a5ac3bd1b6ea046b0f7d90e930a534.tar.bz2 gentoo-be23a9b584a5ac3bd1b6ea046b0f7d90e930a534.zip |
dev-db/qt5-sqlcipher: Fix build with Qt 5.9.4.
Cached files for Qt versions 5.9.3 and 5.9.4 are identical, so simpy
copy them.
Bug: https://bugs.gentoo.org/647624
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'dev-db/qt5-sqlcipher')
-rw-r--r-- | dev-db/qt5-sqlcipher/qt5-sqlcipher-0.1.1_pre20171202.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dev-db/qt5-sqlcipher/qt5-sqlcipher-0.1.1_pre20171202.ebuild b/dev-db/qt5-sqlcipher/qt5-sqlcipher-0.1.1_pre20171202.ebuild index 75caf3f0bb1a..74d3f8006b79 100644 --- a/dev-db/qt5-sqlcipher/qt5-sqlcipher-0.1.1_pre20171202.ebuild +++ b/dev-db/qt5-sqlcipher/qt5-sqlcipher-0.1.1_pre20171202.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -24,6 +24,8 @@ DOCS=(README.md) src_prepare() { eapply "${FILESDIR}"/${PN}-install-path.patch sed -i -e "s/@LIBDIR@/$(get_libdir)/" CMakeLists.txt || die + # workaround for bug 647624 (Qt 5.9.3 and 5.9.4 files are identical) + cp -R qt-file-cache/5.9.{3,4} || die cmake-utils_src_prepare } |