summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-11-22 22:23:24 +0000
committerZac Medico <zmedico@gentoo.org>2007-11-22 22:23:24 +0000
commit0d3e95391689e75564c33127e17594f71e992bd6 (patch)
tree05052f26c613b51b90095caa9898d729039e5d5e /bin
parent63865f1e164a80a322637718263a6fa5b2afd9e5 (diff)
downloadportage-0d3e95391689e75564c33127e17594f71e992bd6.tar.gz
portage-0d3e95391689e75564c33127e17594f71e992bd6.tar.bz2
portage-0d3e95391689e75564c33127e17594f71e992bd6.zip
Allow any errors from save_ebuild_env() to go to stderr instead of
directing them to /dev/null. svn path=/main/trunk/; revision=8607
Diffstat (limited to 'bin')
-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