Revert "prepstrip: avoid duplicates for bug #445336"
authorZac Medico <zmedico@gentoo.org>
Sat, 1 Dec 2012 21:14:56 +0000 (13:14 -0800)
committerZac Medico <zmedico@gentoo.org>
Sat, 1 Dec 2012 21:14:56 +0000 (13:14 -0800)
This reverts commit bba20c632e79426cd006dd2b732fcaed079ac43a.
The sort needs to be inside the subshell in order for it to
work as intended. A correct patch will follow.

bin/ebuild-helpers/prepstrip

index 408060aeb05ae1d90918d5fd8b0c603c22a92a89..575001cf3bdc6c3cdaaaaae1464e052958b5e50d 100755 (executable)
@@ -249,7 +249,7 @@ while read -r x ; do
 done < <(
        scanelf -yqRBF '#k%F' -k '.symtab' "$@"
        find "$@" -type f ! -type l -name '*.a'
-) | LC_ALL=C sort -u
+)
 
 # Now we look for unstripped binaries.
 for inode_link in $(shopt -s nullglob; echo *) ; do