As Enoch wrote:

> I was expecting your Mon Sep 9 15:00:36 2013 +0000 patch which is
> described as
> 
> "Check for ar and ranlib in the target tool namespace, rather than on
> the host."

Well, it's in SVN already.

But here it is again, if that's simpler for you:

Index: configure.ac
===================================================================
--- configure.ac        (revision 1213)
+++ configure.ac        (revision 1214)
@@ -39,7 +39,14 @@
 AC_PROG_SED
 AC_PROG_YACC
 AC_PROG_LEX
+AN_MAKEVAR([RANLIB], [AC_PROG_RANLIB])
+AN_PROGRAM([ranlib], [AC_PROG_RANLIB])
+AC_DEFUN([AC_PROG_RANLIB], [AC_CHECK_TARGET_TOOL(RANLIB, ranlib, :)])
 AC_PROG_RANLIB
+AN_MAKEVAR([AR], [AC_PROG_AR])
+AN_PROGRAM([ar], [AC_PROG_AR])
+AC_DEFUN([AC_PROG_AR], [AC_CHECK_TARGET_TOOL(AR, ar, :)])
+AC_PROG_AR
 AH_TEMPLATE([HAVE_YYLEX_DESTROY],
             [Define if lex/flex has yylex_destroy])
 # flex should have this

-- 
cheers, Joerg               .-.-.   --... ...--   -.. .  DL8DTL

http://www.sax.de/~joerg/
Never trust an operating system you don't have sources for. ;-)

_______________________________________________
avrdude-dev mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/avrdude-dev

Reply via email to