From: Zac Medico Date: Thu, 22 Nov 2007 22:23:48 +0000 (-0000) Subject: Allow any errors from save_ebuild_env() to go to stderr instead of X-Git-Tag: v2.1.4~238 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f2002b88d9b17c8c1ce2ced85de29d330230f1de;p=portage.git Allow any errors from save_ebuild_env() to go to stderr instead of directing them to /dev/null. (trunk r8607) svn path=/main/branches/2.1.2/; revision=8608 --- diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 8ad15241d..20d08e3e3 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1796,7 +1796,7 @@ if [ -n "${EBUILD_SH_ARGS}" ] && \ ! hasq ${EBUILD_SH_ARGS} clean help info; then # Save current environment and touch a success file. (echo for success) umask 002 - save_ebuild_env > "${T}/environment" 2>/dev/null + save_ebuild_env > "${T}/environment" chown portage:portage "${T}/environment" &>/dev/null chmod g+w "${T}/environment" &>/dev/null fi