Subject: ranlib is obsolete, use libtool

Subject says it all; instead of hand tweaking, use the autotool methods
that have been invented to build libraries, which is libtool. Current
autotools even claim that AC_PROG_RANLIB is obsolete and AC_PROG_LIBTOOL
should be used instead.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>

 configure.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: configure.in
===================================================================
--- configure.in.orig
+++ configure.in
@@ -16,7 +16,7 @@ AC_PROG_CXX
 AC_PROG_INSTALL
 AC_PROG_LN_S
 AC_PROG_MAKE_SET
-AC_PROG_RANLIB
+AC_PROG_LIBTOOL
 AC_PROG_YACC
 AM_PROG_LEX
 
