diff options
author | Amaury Pouly <amaury.pouly@gmail.com> | 2012-03-01 16:51:30 +0100 |
---|---|---|
committer | Amaury Pouly <amaury.pouly@gmail.com> | 2012-03-01 16:51:55 +0100 |
commit | dc572fbde30469a692670ab972b5a9490c2671a4 (patch) | |
tree | f179a9afa9555f4ff3c3801302f5b264f0f10e29 | |
parent | e8c7d10e4662c3c1d26a7500914f1ce7fdce99d4 (diff) |
configure: fix $(LD) which was incorrectly set as $(AR)
Change-Id: I76db28bf0d583840bc00e96b73370316ad7d8b73
-rwxr-xr-x | tools/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index ee76ed73e2..87dc78f27d 100755 --- a/tools/configure +++ b/tools/configure @@ -3645,7 +3645,7 @@ HOSTCC=`findtool gcc --lit` HOSTAR=`findtool ar --lit` CC=`findtool ${CC} --lit` CPP=`findtool ${CPP} --lit` -LD=`findtool ${AR} --lit` +LD=`findtool ${LD} --lit` AR=`findtool ${AR} --lit` AS=`findtool ${AS} --lit` OC=`findtool ${OC} --lit` |