commit: 6f20beb9eeb4fa249078b98262c6aaac69546549 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sat Jun 30 20:08:51 2018 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sat Jun 30 20:57:37 2018 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=6f20beb9
app-office/kexi: Fix cmake warning Closes: https://bugs.gentoo.org/659644 Package-Manager: Portage-2.3.41, Repoman-2.3.9 app-office/kexi/kexi-9999.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app-office/kexi/kexi-9999.ebuild b/app-office/kexi/kexi-9999.ebuild index 2a8bea7335..a524f44ca2 100644 --- a/app-office/kexi/kexi-9999.ebuild +++ b/app-office/kexi/kexi-9999.ebuild @@ -73,7 +73,6 @@ src_prepare() { src_configure() { local mycmakeargs=( -DKEXI_MIGRATEMANAGER_DEBUG=$(usex debug) - -DKEXI_SCRIPTING_DEBUG=$(usex debug) -DKEXI_AUTORISE_TABBED_TOOLBAR=$(usex experimental) -DKEXI_SCRIPTS_SUPPORT=$(usex experimental) $(cmake-utils_use_find_package marble KexiMarble) @@ -81,5 +80,7 @@ src_configure() { $(cmake-utils_use_find_package mysql MySQL) $(cmake-utils_use_find_package postgres PostgreSQL) ) + use experimental && mycmakeargs+=( -DKEXI_SCRIPTING_DEBUG=$(usex debug) ) + kde5_src_configure }
