diff options
author | Patrick Lauer <patrick@gentoo.org> | 2012-10-19 02:44:21 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2012-10-19 02:44:21 +0000 |
commit | 341b18a2cc5667884d076b05d5a2e993b9f5e9b5 (patch) | |
tree | e71eb31975185ec6d4d6807c712f861948375039 /eclass/check-reqs.eclass | |
parent | Restricting pypy (diff) | |
download | historical-341b18a2cc5667884d076b05d5a2e993b9f5e9b5.tar.gz historical-341b18a2cc5667884d076b05d5a2e993b9f5e9b5.tar.bz2 historical-341b18a2cc5667884d076b05d5a2e993b9f5e9b5.zip |
Fixing binpkg behaviour
Diffstat (limited to 'eclass/check-reqs.eclass')
-rw-r--r-- | eclass/check-reqs.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass index c739fd09ff61..f7644393df18 100644 --- a/eclass/check-reqs.eclass +++ b/eclass/check-reqs.eclass @@ -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/eclass/check-reqs.eclass,v 1.11 2012/09/27 16:35:41 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/check-reqs.eclass,v 1.12 2012/10/19 02:44:21 patrick Exp $ # @ECLASS: check-reqs.eclass # @MAINTAINER: @@ -91,6 +91,8 @@ check_reqs() { check-reqs_pkg_setup() { debug-print-function ${FUNCNAME} "$@" + [[ ${MERGE_TYPE} == binary ]] && return + check-reqs_prepare check-reqs_run check-reqs_output |