From: wolf Date: Thu, 6 Mar 2003 15:27:27 +0000 (+0000) Subject: Fix check for AR. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08c58d69256b8a4d4f6bb05ce4f41d9d23b0c7cc;p=dealii-svn.git Fix check for AR. git-svn-id: https://svn.dealii.org/trunk@7271 0785d39b-7218-0410-832d-ea1e28bc413d --- 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)