For bug #186610, use `find <path>` to scan for config updates since `cd <path>` could...
authorZac Medico <zmedico@gentoo.org>
Thu, 26 Jul 2007 21:54:49 +0000 (21:54 -0000)
committerZac Medico <zmedico@gentoo.org>
Thu, 26 Jul 2007 21:54:49 +0000 (21:54 -0000)
svn path=/main/branches/2.1.2/; revision=7403

bin/emerge

index f9fdd09d614c4d28e8c3ae6e6234a8c93d57dddf..2e783f73be542a135137dd68b23039cfda61cab7 100755 (executable)
@@ -4352,17 +4352,17 @@ def chk_updated_cfg_files(target_root, config_protect):
                        except OSError:
                                continue
                        if stat.S_ISDIR(mymode):
-                               mycommand = "cd '%s'; find . -iname '._cfg????_*'" % x
+                               mycommand = "find '%s' -iname '._cfg????_*'" % x
                        else:
-                               mycommand = "cd '%s'; find . -maxdepth 1 -iname '._cfg????_%s'" % \
+                               mycommand = "find '%s' -maxdepth 1 -iname '._cfg????_%s'" % \
                                        os.path.split(x.rstrip(os.path.sep))
                        a = commands.getstatusoutput(mycommand + \
-                               " ! -iname '.*~' ! -iname '.*.bak'")
+                               " ! -iname '.*~' ! -iname '.*.bak' -print0")
                        if a[0] != 0:
                                print >> sys.stderr, " " + bad("*")+ " error scanning '%s'" % x
                        else:
-                               files = a[1].split()
-                               if files:
+                               files = a[1].split('\0')
+                               if files != ['']:
                                        procount += 1
                                        print colorize("WARN", " * IMPORTANT:"),
                                        if stat.S_ISDIR(mymode):