Akim Demaille wrote: > LIBTOOL_DEPS = @LIBTOOL_DEPS@ > libtool: $(LIBTOOL_DEPS) > $(SHELL) ./config.status --recheck > > Do you really mean --recheck? In that case there is no reason for > config.status to recreate libtool, unless I missing something. Don't > you mean "./config.status libtool"?
Seeing that LIBTOOL_DEPS is "$ltmain", yes. I pushed the obvious fix. Paolo diff --git a/doc/libtool.texi b/doc/libtool.texi index fe9547e..d304f28 100644 --- a/doc/libtool.texi +++ b/doc/libtool.texi @@ -1986,6 +1986,6 @@ @defmacx AM_PROG_LIBTOOL @example LIBTOOL_DEPS = @@LIBTOOL_DEPS@@ libtool: $(LIBTOOL_DEPS) - $(SHELL) ./config.status --recheck + $(SHELL) ./config.status libtool @end example
