[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Typo in the documentation?
From: |
Paolo Bonzini |
Subject: |
Re: Typo in the documentation? |
Date: |
Fri, 28 Nov 2008 16:41:23 +0100 |
User-agent: |
Thunderbird 2.0.0.18 (Macintosh/20081105) |
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