aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-05-24 20:53:18 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-05-24 20:53:18 +0000
commit13128a1c4940d482dc6bd1df06f067f8e1d20586 (patch)
tree8aef008f1f322b64c35deeb53bf05354da8d4212 /configure.ac
parenta65f64b6b81f5f0981ef2cb12be164fac3de750f (diff)
Following moving strip to AC_PATH_TOOL, we need to do something similar for ar.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@66029 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index ea8c14335..c33724886 100644
--- a/configure.ac
+++ b/configure.ac
@@ -111,7 +111,6 @@ then
AC_CHECK_TOOL(CXX, g++, :)
AC_CHECK_TOOL(LD, ld, :)
AC_CHECK_TOOL(RANLIB, ranlib, :)
- AC_CHECK_TOOL(AR, ar, :)
fi
# Checks for programs.
@@ -129,6 +128,7 @@ AC_PROG_RANLIB
AST_CHECK_GNU_MAKE
AC_PATH_TOOL([STRIP], [strip], :)
+AC_PATH_TOOL([AR], [ar], :)
GNU_LD=0
if test "x$with_gnu_ld" = "xyes" ; then
@@ -137,7 +137,6 @@ fi
AC_SUBST(GNU_LD)
AC_PATH_PROG([GREP], [grep], :)
-AC_PATH_PROG([AR], [ar], :)
AC_PATH_PROG([FIND], [find], :)
AC_PATH_PROG([COMPRESS], [compress], :)
AC_PATH_PROG([BASENAME], [basename], :)