diff options
author | Michael Palimaka <kensington@gentoo.org> | 2016-03-10 18:31:11 +1100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2016-03-10 18:47:15 +1100 |
commit | 01365bd01b1ac0dc8da6dfdc9f40f45c9eaf7792 (patch) | |
tree | 5bfd68dad05f71be2dbd75df97a4e38a251c8745 /kde-apps | |
parent | www-client/firefox: Fixed dependency on dev-libs/nspr (bug #576936). (diff) | |
download | gentoo-01365bd01b1ac0dc8da6dfdc9f40f45c9eaf7792.tar.gz gentoo-01365bd01b1ac0dc8da6dfdc9f40f45c9eaf7792.tar.bz2 gentoo-01365bd01b1ac0dc8da6dfdc9f40f45c9eaf7792.zip |
kde-apps/kig: fix build with USE="scripting"
If not already set, cmake's FindBoost.cmake sets PYTHON_EXECUTABLE to "python".
This causes FindPythonLibs.cmake to fail as it expects a full path.
Gentoo-bug: 576932
Package-Manager: portage-2.2.27
Diffstat (limited to 'kde-apps')
-rw-r--r-- | kde-apps/kig/kig-4.14.3.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kde-apps/kig/kig-4.14.3.ebuild b/kde-apps/kig/kig-4.14.3.ebuild index 2ea7c9c172ad..39c1b445e30a 100644 --- a/kde-apps/kig/kig-4.14.3.ebuild +++ b/kde-apps/kig/kig-4.14.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -36,6 +36,7 @@ src_prepare() { src_configure() { local mycmakeargs=( + -DPYTHON_EXECUTABLE="${PYTHON}" $(cmake-utils_use_find_package scripting BoostPython) ) |