summaryrefslogtreecommitdiffstats
path: root/bin/emerge
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-09-28 18:13:58 +0000
committerZac Medico <zmedico@gentoo.org>2007-09-28 18:13:58 +0000
commitcc95945573a63d3ab9d1281316d91d7ec3327733 (patch)
tree305d63f68e77f6c2ae2f3b4a1b3cf3464271c6ef /bin/emerge
parent703faeac4d2a7f6f3b9c0992e1f354c36c0da84e (diff)
downloadportage-cc95945573a63d3ab9d1281316d91d7ec3327733.tar.gz
portage-cc95945573a63d3ab9d1281316d91d7ec3327733.tar.bz2
portage-cc95945573a63d3ab9d1281316d91d7ec3327733.zip
Bug #193548 - When emerge spawns find to search for config updates,
show the find output if there is an error. (trunk r7871) svn path=/main/branches/2.1.2/; revision=7872
Diffstat (limited to 'bin/emerge')
-rwxr-xr-xbin/emerge3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/emerge b/bin/emerge
index 093496ced..94aa6b0a1 100755
--- a/bin/emerge
+++ b/bin/emerge
@@ -4531,7 +4531,8 @@ def chk_updated_cfg_files(target_root, config_protect):
a = commands.getstatusoutput(mycommand + \
" ! -iname '.*~' ! -iname '.*.bak' -print0")
if a[0] != 0:
- print >> sys.stderr, " " + bad("*")+ " error scanning '%s'" % x
+ print >> sys.stderr, " " + bad("*")+ \
+ " error scanning '%s': %s" % (x, a[1])
else:
files = a[1].split('\0')
# split always produces an empty string as the last element