diff options
author | 2013-10-14 20:30:00 +0000 | |
---|---|---|
committer | 2013-10-14 20:30:00 +0000 | |
commit | cf8d9856dbb1846dda29bc1d294bc61f696bca9f (patch) | |
tree | c826d5849c180b55ee2864b4dafbd3083599a76a /eclass/git-r3.eclass | |
parent | Switch to git-r3. Add PYTHON_USEDEP on portage. (diff) | |
download | gentoo-2-cf8d9856dbb1846dda29bc1d294bc61f696bca9f.tar.gz gentoo-2-cf8d9856dbb1846dda29bc1d294bc61f696bca9f.tar.bz2 gentoo-2-cf8d9856dbb1846dda29bc1d294bc61f696bca9f.zip |
Fix over-use of ||die.
Diffstat (limited to 'eclass/git-r3.eclass')
-rw-r--r-- | eclass/git-r3.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/git-r3.eclass b/eclass/git-r3.eclass index 32300387493d..743619fa2a32 100644 --- a/eclass/git-r3.eclass +++ b/eclass/git-r3.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/git-r3.eclass,v 1.17 2013/10/14 13:32:33 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.18 2013/10/14 20:30:00 mgorny Exp $ # @ECLASS: git-r3.eclass # @MAINTAINER: @@ -254,7 +254,7 @@ _git-r3_set_submodules() { # skip modules that have 'update = none', bug #487262. local upd=$(echo "${data}" | git config -f /dev/fd/0 \ - submodule."${subname}".update || die) + submodule."${subname}".update) [[ ${upd} == none ]] && continue submodules+=( |