From: Zac Medico Date: Wed, 15 Aug 2007 20:29:44 +0000 (-0000) Subject: Make config updates get counted correctly for bug #187741. (branches/2.1.2 r7564) X-Git-Tag: v2.1.2.12~15 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7756a3b09663685e9deb8fcac40af81271c7a3f6;p=portage.git Make config updates get counted correctly for bug #187741. (branches/2.1.2 r7564) svn path=/main/branches/2.1.2.9/; revision=7613 --- diff --git a/bin/emerge b/bin/emerge index 7433af9fb..e495ea4e1 100755 --- a/bin/emerge +++ b/bin/emerge @@ -3846,7 +3846,10 @@ def chk_updated_cfg_files(target_root, config_protect): print >> sys.stderr, " " + bad("*")+ " error scanning '%s'" % x else: files = a[1].split('\0') - if files != ['']: + # split always produces an empty string as the last element + if files and not files[-1]: + del files[-1] + if files: procount += 1 print colorize("WARN", " * IMPORTANT:"), if stat.S_ISDIR(mymode):