diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2012-09-03 12:06:00 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2012-09-03 12:06:00 +0000 |
commit | 40bde9ac8db757c6db01fdc3a970b0d26a3554d6 (patch) | |
tree | 97bd3eacb10b97b8ff8c74dc08ed2a8824c621cc | |
parent | Bump for #433770 (diff) | |
download | gentoo-2-40bde9ac8db757c6db01fdc3a970b0d26a3554d6.tar.gz gentoo-2-40bde9ac8db757c6db01fdc3a970b0d26a3554d6.tar.bz2 gentoo-2-40bde9ac8db757c6db01fdc3a970b0d26a3554d6.zip |
Fix bug #431436 with mycmakeargs not handled properly
(Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
-rw-r--r-- | net-misc/leechcraft-core/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/leechcraft-core/leechcraft-core-0.5.80.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/net-misc/leechcraft-core/ChangeLog b/net-misc/leechcraft-core/ChangeLog index b04fed2147f4..c1876c2f2c7d 100644 --- a/net-misc/leechcraft-core/ChangeLog +++ b/net-misc/leechcraft-core/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/leechcraft-core # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/leechcraft-core/ChangeLog,v 1.25 2012/08/19 00:08:48 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/leechcraft-core/ChangeLog,v 1.26 2012/09/03 12:06:00 pinkbyte Exp $ + + 03 Sep 2012; Sergey Popov <pinkbyte@gentoo.org> + leechcraft-core-0.5.80.ebuild: + Fix bug #431436 with mycmakeargs not handled properly 19 Aug 2012; Johannes Huber <johu@gentoo.org> leechcraft-core-0.5.70-r1.ebuild: diff --git a/net-misc/leechcraft-core/leechcraft-core-0.5.80.ebuild b/net-misc/leechcraft-core/leechcraft-core-0.5.80.ebuild index 2de97ef409c3..44e1a2125fc3 100644 --- a/net-misc/leechcraft-core/leechcraft-core-0.5.80.ebuild +++ b/net-misc/leechcraft-core/leechcraft-core-0.5.80.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/leechcraft-core/leechcraft-core-0.5.80.ebuild,v 1.2 2012/08/14 21:19:05 maksbotan Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/leechcraft-core/leechcraft-core-0.5.80.ebuild,v 1.3 2012/09/03 12:06:00 pinkbyte Exp $ EAPI="4" @@ -30,7 +30,7 @@ src_configure() { -DWITH_PLUGINS=False ) if [[ ${PV} != 9999 ]]; then - mycmakeargs+= "-DLEECHCRAFT_VERSION=${PV}" + mycmakeargs+=( -DLEECHCRAFT_VERSION=${PV} ) fi cmake-utils_src_configure } |