summaryrefslogtreecommitdiff
path: root/trunk
diff options
context:
space:
mode:
authorfuzzyray <fuzzyray@gentoo.org>2008-02-18 18:16:57 +0000
committerfuzzyray <fuzzyray@gentoo.org>2008-02-18 18:16:57 +0000
commite68e2512ff586f0c884d51b929c8d4c0e67dc908 (patch)
treef478a85bad37b4c9ac0a5d134f3312dd541ee4bc /trunk
parent3070fa53115461e7398b3cffd49e8146f3ab1dd6 (diff)
downloadgentoolkit-e68e2512ff586f0c884d51b929c8d4c0e67dc908.tar.gz
Don't duplicate broken file output. (Bug 201319)
svn path=/; revision=465
Diffstat (limited to 'trunk')
-rwxr-xr-xtrunk/src/revdep-rebuild/revdep-rebuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/revdep-rebuild/revdep-rebuild b/trunk/src/revdep-rebuild/revdep-rebuild
index 0324d5e..70edb16 100755
--- a/trunk/src/revdep-rebuild/revdep-rebuild
+++ b/trunk/src/revdep-rebuild/revdep-rebuild
@@ -840,7 +840,7 @@ show_unowned_files() {
ewarn "The broken files are:"
while read filename junk; do
[[ $junk = *none* ]] && ewarn " $filename"
- done < "$LIST.4_package_owners"
+ done < "$LIST.4_package_owners" | awk '!s[$0]++' # (omit dupes)
fi
}