Skip to content
Snippets Groups Projects
Commit 91018f4f authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

AC_CHECK_TOOL is prolly better to use when checking for ar

parent fb086b57
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,9 @@ if test "x$SED" = "xsed-was-not-found-by-configure"; then ...@@ -25,7 +25,9 @@ if test "x$SED" = "xsed-was-not-found-by-configure"; then
fi fi
dnl AR is used by libtool, and try the odd Solaris path too dnl AR is used by libtool, and try the odd Solaris path too
AC_PATH_PROG( AR, ar, dnl we use AC_CHECK_TOOL since this should make a library for the target
dnl platform
AC_CHECK_TOOL(AR, ar,
ar-was-not-found-by-configure, ar-was-not-found-by-configure,
$PATH:/usr/bin:/usr/local/bin:/usr/ccs/bin) $PATH:/usr/bin:/usr/local/bin:/usr/ccs/bin)
AC_SUBST(AR) AC_SUBST(AR)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment