cc-wrapper: Fix stray binPrefix -> targetPrefix

I thought my sed in e755a8a27d was
exhaustive, but it was not.
This commit is contained in:
John Ericson
2017-11-27 03:30:15 -05:00
parent caa3599599
commit 43e00f7d18
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -142,9 +142,9 @@ for CMD in \
ar as nm objcopy ranlib strip strings size ld windres
do
if
PATH=$_PATH type -p "@binPrefix@$CMD" > /dev/null
PATH=$_PATH type -p "@targetPrefix@$CMD" > /dev/null
then
export "${role}$(echo "$CMD" | tr "[:lower:]" "[:upper:]")=@binPrefix@${CMD}";
export "${role}$(echo "$CMD" | tr "[:lower:]" "[:upper:]")=@targetPrefix@${CMD}";
fi
done