From: fuzzyray Date: Wed, 9 Jul 2008 19:01:06 +0000 (-0000) Subject: Fix revdep-rebuild to not evaluate broken objects multiple times. (Bug 220761) X-Git-Tag: gentoolkit-0.2.4.3~20 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5435904ee06df9303fc15ec93b405150d51add96;p=gentoolkit.git Fix revdep-rebuild to not evaluate broken objects multiple times. (Bug 220761) svn path=/; revision=493 --- diff --git a/trunk/ChangeLog b/trunk/ChangeLog index fcf24fe..432f02f 100644 --- a/trunk/ChangeLog +++ b/trunk/ChangeLog @@ -1,6 +1,8 @@ 2008-07-09: Paul Varner * revdep-rebuild: Fix revdep-rebuild to use TMPDIR instead of HOME for temporary files. (Bug 203414) + * revdep-rebuild: Fix revdep-rebuild to not evaluate broken objects + multiple times. (Bug 220761) 2008-07-09: Paul Varner * gentoolkit: Fix gentoolkit to work without thread support in diff --git a/trunk/src/revdep-rebuild/revdep-rebuild b/trunk/src/revdep-rebuild/revdep-rebuild index 010c20a..69cd827 100755 --- a/trunk/src/revdep-rebuild/revdep-rebuild +++ b/trunk/src/revdep-rebuild/revdep-rebuild @@ -826,6 +826,7 @@ main_checks() { ) fi [[ -r "$BROKEN_FILE" && -s "$BROKEN_FILE" ]] || clean_exit + sort -u "$BROKEN_FILE" -o "$BROKEN_FILE" einfo "Generated new $BROKEN_FILE" fi }