From: Mike Frysinger Date: Sun, 16 Dec 2012 22:09:17 +0000 (-0500) Subject: configure: pull AR from the env too X-Git-Tag: v3.8.0~3^2~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95d9d665d9dc5bdb0be84d2caa405e9487bd88ad;p=thirdparty%2Fiproute2.git configure: pull AR from the env too This matches the existing CC behavior. Signed-off-by: Mike Frysinger --- diff --git a/configure b/configure index ea1038df5..7c2db9be4 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 }