Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=58a84df32d7f21a6921f66436c2eea213c2e17a9
commit 58a84df32d7f21a6921f66436c2eea213c2e17a9 Author: Miklos Vajna <[EMAIL PROTECTED]> Date: Mon Dec 3 23:48:40 2007 +0100 chkdep: small speed hack: cache the output of checker() diff --git a/chkdep b/chkdep index 3f27926..9cb60b6 100755 --- a/chkdep +++ b/chkdep @@ -212,7 +212,7 @@ for root, dirs, files in os.walk(fpmroot): for file in files: ret = checker(os.path.join(root, file)) if ret: - for i in checker(os.path.join(root, file)): + for i in ret: if i not in depfiles: depfiles.append(i) for i in depfiles: _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
