From: Ulrich Mueller Date: Sun, 2 Jan 2011 16:28:48 +0000 (+0100) Subject: newins in EAPI 4 should actually install the file. Fixes bug 350385. X-Git-Tag: v2.1.9.28~7 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a1b9829d910a6a7ad7bee51615b7ab4e3323c588;p=portage.git newins in EAPI 4 should actually install the file. Fixes bug 350385. --- diff --git a/bin/ebuild-helpers/newins b/bin/ebuild-helpers/newins index 9da212fb5..065477f47 100755 --- a/bin/ebuild-helpers/newins +++ b/bin/ebuild-helpers/newins @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh @@ -22,8 +22,10 @@ case "$EAPI" in *) cp -P "$1" "$T/$2" ret=$? - [[ $ret -ne 0 ]] && helpers_die "${0##*/} failed" - exit $ret + if [[ $ret -ne 0 ]] ; then + helpers_die "${0##*/} failed" + exit $ret + fi ;; esac doins "${T}/${2}"