From: Amos Jeffries Date: Sun, 23 Oct 2011 02:03:09 +0000 (-0600) Subject: Bug 1243: Build overrides configured AR setting X-Git-Tag: BumpSslServerFirst.take01~83 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=52c549d95d52209e21d9adbb08e86575cea8e552;p=thirdparty%2Fsquid.git Bug 1243: Build overrides configured AR setting --- diff --git a/configure.ac b/configure.ac index 586864c052..62ecb0220b 100644 --- a/configure.ac +++ b/configure.ac @@ -95,8 +95,10 @@ if test "x$ac_cv_path_PERL" = "xnone"; then fi AC_PATH_PROG(POD2MAN, pod2man, $FALSE) -dnl set $(AR) -AC_PATH_PROG(AR, ar, $FALSE) +dnl set $(AR) if not provided by the build environment +if test "x$AR" = "x"; then + AC_PATH_PROG(AR, ar, $FALSE) +fi AR_R="$AR r" AC_SUBST(AR_R)