From 7bab46cb15d81316441db05c078ca01a30230ceb Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 7 Feb 2007 21:11:44 +0000 Subject: For bug #165780, make config-protect code consistently ignore '.*~' and '.*.bak'. svn path=/main/trunk/; revision=5914 --- bin/emerge | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bin/emerge') diff --git a/bin/emerge b/bin/emerge index 60d5d6bd3..952f83397 100755 --- a/bin/emerge +++ b/bin/emerge @@ -3610,7 +3610,8 @@ def chk_updated_cfg_files(target_root, config_protect): else: mycommand = "cd '%s'; find . -maxdepth 1 -iname '._cfg????_%s'" % \ os.path.split(x.rstrip(os.path.sep)) - a = commands.getstatusoutput(mycommand) + a = commands.getstatusoutput(mycommand + \ + " ! -iname '.*~' ! -iname '.*.bak'") if a[0] != 0: print >> sys.stderr, " " + bad("*")+ " error scanning '%s'" % x else: -- cgit v1.2.3-1-g7c22