diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-11-22 22:23:24 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-11-22 22:23:24 +0000 |
commit | 0d3e95391689e75564c33127e17594f71e992bd6 (patch) | |
tree | 05052f26c613b51b90095caa9898d729039e5d5e | |
parent | 63865f1e164a80a322637718263a6fa5b2afd9e5 (diff) | |
download | portage-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
-rwxr-xr-x | bin/ebuild.sh | 2 |
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 |