From 5803df459059964f1d3641cc70ade5bec70919fb Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 6 Mar 2003 15:27:27 +0000 Subject: [PATCH] Fix check for AR. git-svn-id: https://svn.dealii.org/trunk@7271 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/configure.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deal.II/configure.in b/deal.II/configure.in index 5459bbf8cc..07cd95d401 100644 --- a/deal.II/configure.in +++ b/deal.II/configure.in @@ -272,7 +272,8 @@ dnl RANLIB is not available, so skip the second check that tries to get dnl the full path for the executable that was found in the first one. dnl We also check for AR, since on some systems we will want to pass different dnl flags to AR if for example both 32- and 64-bit binaries are supported -AC_CHECK_PROG(AR,ar) +AC_CHECK_PROG(AR,ar,ar) +AC_PATH_PROG(AR,$AR) AC_PROG_RANLIB if test "$RANLIB" != ":" ; then AC_PATH_PROG(RANLIB,$RANLIB) -- 2.39.5