]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* doc/libtool.texi (Cheap tricks): Fix the instructions for making
authorGary V. Vaughan <gary@gnu.org>
Fri, 27 Aug 2004 13:12:51 +0000 (13:12 +0000)
committerGary V. Vaughan <gary@gnu.org>
Fri, 27 Aug 2004 13:12:51 +0000 (13:12 +0000)
a ltmain.in wrapping libtool in light of recent changes to the
version checking code.

ChangeLog
doc/libtool.texi

index 78221684b5c1bc879bfcf6c659d108b4e9d34553..5ceae668799fbac94ea099d20f2b3eebdc1d3a10 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-08-27  Gary V. Vaughan  <gary@gnu.org>
+
+       * doc/libtool.texi (Cheap tricks): Fix the instructions for making
+       a ltmain.in wrapping libtool in light of recent changes to the
+       version checking code.
+
 2004-08-26  Peter O'Gorman  <peter@pogma.com>
 
        * config/ltmain.in [darwin]: Use the -dylib_file flag and avoid
index 4c34e91ddaa2b58152c9b18bbd076fc4ae19e9ec..c627ff42d31e3c3c998c5a4223e25eb6d45157f7 100644 (file)
@@ -5210,12 +5210,16 @@ configured for your platform, and @code{~/bin} is a directory in your
 @example
 trick$ cd ~/bin
 trick$ sed 's%^\(macro_version=\).*$%\1@@VERSION@@%;
-            s%^\(macro_revision=\).*$%\1@@TIMESTAMP@@%;
+            s%^\(macro_revision=\).*$%\1@@package_revision@@%;
             /^# ltmain\.sh/q' /home/src/libtool/libtool > libtool
 trick$ echo '. /home/src/libtool/ltmain.in' >> libtool
 trick$ chmod +x libtool
 trick$ libtool --version
-ltmain.sh (GNU @@PACKAGE@@) @@VERSION@@@@TIMESTAMP@@
+ltmain.sh (GNU @PACKAGE@@TIMESTAMP@) @VERSION@
+
+Copyright (C) 2004  Free Software Foundation, Inc.
+This is free software; see the source for copying conditions.  There is NO
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 trick$
 @end example
 @end itemize