From 95d9d665d9dc5bdb0be84d2caa405e9487bd88ad Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 16 Dec 2012 17:09:17 -0500 Subject: [PATCH] configure: pull AR from the env too This matches the existing CC behavior. Signed-off-by: Mike Frysinger --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index ea1038df..7c2db9be 100755 --- a/configure +++ b/configure @@ -10,7 +10,9 @@ trap 'status=$?; rm -rf $TMPDIR; exit $status' EXIT HUP INT QUIT TERM check_toolchain() { : ${PKG_CONFIG:=pkg-config} +: ${AR=ar} : ${CC=gcc} +echo "AR:=${AR}" >>Config echo "CC:=${CC}" >>Config echo "PKG_CONFIG:=${PKG_CONFIG}" >>Config }