Fix revdep-rebuild to not evaluate broken objects multiple times. (Bug 220761)
authorfuzzyray <fuzzyray@gentoo.org>
Wed, 9 Jul 2008 19:01:06 +0000 (19:01 -0000)
committerfuzzyray <fuzzyray@gentoo.org>
Wed, 9 Jul 2008 19:01:06 +0000 (19:01 -0000)
svn path=/; revision=493

trunk/ChangeLog
trunk/src/revdep-rebuild/revdep-rebuild

index fcf24fe9d06d0a069e5308b5abf33050635c25ab..432f02fb271dc1fdc71aab7d8139ef786355dd3d 100644 (file)
@@ -1,6 +1,8 @@
 2008-07-09: Paul Varner <fuzzyray@gentoo.org>
        * 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 <fuzzyray@gentoo.org>
        * gentoolkit: Fix gentoolkit to work without thread support in 
index 010c20ae7b0959c38fc5fd24c859a991deaee43b..69cd827fdd587f8f3a64332e3c29f40f92533959 100755 (executable)
@@ -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
 }