diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-09-18 08:49:33 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-09-18 08:49:33 +0000 |
commit | 05c69e3df0ec28c5ac99080931f0a86d617f93da (patch) | |
tree | 894880bb40b591bba16b23827481b5150258f25d /eclass | |
parent | Fix bug #479896. Patch by Enrico Tagliavini. (diff) | |
download | gentoo-2-05c69e3df0ec28c5ac99080931f0a86d617f93da.tar.gz gentoo-2-05c69e3df0ec28c5ac99080931f0a86d617f93da.tar.bz2 gentoo-2-05c69e3df0ec28c5ac99080931f0a86d617f93da.zip |
Fix coreutils dep to be build-time.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/multibuild.eclass | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index ba3583ea285b..086253afb7bb 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.974 2013/09/17 19:40:56 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.975 2013/09/18 08:49:33 mgorny Exp $ + + 18 Sep 2013; Michał Górny <mgorny@gentoo.org> multibuild.eclass: + Fix coreutils dep to be build-time. 17 Sep 2013; Michał Górny <mgorny@gentoo.org> python-utils-r1.eclass: Fix missing variable replacement in _python_ln_rel. diff --git a/eclass/multibuild.eclass b/eclass/multibuild.eclass index dadaffc829de..0a2771e66326 100644 --- a/eclass/multibuild.eclass +++ b/eclass/multibuild.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/multibuild.eclass,v 1.13 2013/09/10 09:10:22 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multibuild.eclass,v 1.14 2013/09/18 08:49:33 mgorny Exp $ # @ECLASS: multibuild # @MAINTAINER: @@ -28,7 +28,7 @@ if [[ ! ${_MULTIBUILD} ]]; then inherit multiprocessing -RDEPEND="userland_GNU? ( >=sys-apps/coreutils-8.5 )" +DEPEND="userland_GNU? ( >=sys-apps/coreutils-8.5 )" # @ECLASS-VARIABLE: MULTIBUILD_VARIANTS # @DESCRIPTION: |