aboutsummaryrefslogtreecommitdiff
path: root/gold/configure
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>2010-02-06 20:14:01 +0000
committerIan Lance Taylor <ian@airs.com>2010-02-06 20:14:01 +0000
commit9109c078e3f7ede78b1cd64efe05a55df993dc5a (patch)
tree0d9eb25cbb398d0f81b444682d8ebb5d62414072 /gold/configure
parentcf846138aeaf3dceb0c339dd3e0ad7cc66140f81 (diff)
downloadfsf-binutils-gdb-9109c078e3f7ede78b1cd64efe05a55df993dc5a.zip
fsf-binutils-gdb-9109c078e3f7ede78b1cd64efe05a55df993dc5a.tar.gz
fsf-binutils-gdb-9109c078e3f7ede78b1cd64efe05a55df993dc5a.tar.bz2
* configure.ac: Rewrite targetobjs duplicate removal code to use
only shell constructs. * configure: Rebuild.
Diffstat (limited to 'gold/configure')
-rwxr-xr-xgold/configure9
1 files changed, 8 insertions, 1 deletions
diff --git a/gold/configure b/gold/configure
index dbc6319..9fd198f 100755
--- a/gold/configure
+++ b/gold/configure
@@ -3411,7 +3411,14 @@ fi
done
# Remove any duplicates.
-targetobjs=`echo $targetobjs | tr ' ' '\n' | sort | uniq | tr '\n' ' '`
+to=""
+for t in $targetobjs; do
+ case " $to " in
+ *" $t "*) ;;
+ *) to="$to $t" ;;
+ esac
+done
+targetobjs=$to
if test -n "$targ_32_little"; then