aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-05-24 20:55:51 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-05-24 20:55:51 +0000
commita9e8af0e5b90959032a161fc634c16e351fcadb2 (patch)
treebe0c13a1c3f921001b38a096fe756883248af099 /configure.ac
parent2d03c9a01d2b7c096c7a00352caf5ae79d1a5292 (diff)
Merged revisions 66029-66030 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r66029 | qwell | 2007-05-24 15:53:18 -0500 (Thu, 24 May 2007) | 2 lines Following moving strip to AC_PATH_TOOL, we need to do something similar for ar. ........ r66030 | qwell | 2007-05-24 15:54:16 -0500 (Thu, 24 May 2007) | 2 lines Rebuild configure script for previous ar fix. ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@66031 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 1600b35d4..bdb814c40 100644
--- a/configure.ac
+++ b/configure.ac
@@ -118,7 +118,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.
@@ -136,6 +135,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
@@ -144,7 +144,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], :)