summaryrefslogtreecommitdiffstats
path: root/bin/ebuild.sh
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-11-22 22:23:48 +0000
committerZac Medico <zmedico@gentoo.org>2007-11-22 22:23:48 +0000
commitf2002b88d9b17c8c1ce2ced85de29d330230f1de (patch)
tree251db33fc115887a2b891fd4d9a661a0cd0c917c /bin/ebuild.sh
parentd010b6c218a26097abe3bbdf49945289848845d9 (diff)
downloadportage-f2002b88d9b17c8c1ce2ced85de29d330230f1de.tar.gz
portage-f2002b88d9b17c8c1ce2ced85de29d330230f1de.tar.bz2
portage-f2002b88d9b17c8c1ce2ced85de29d330230f1de.zip
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
Diffstat (limited to 'bin/ebuild.sh')
-rwxr-xr-xbin/ebuild.sh2
1 files changed, 1 insertions, 1 deletions
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