From: Gary V. Vaughan Date: Fri, 27 Aug 2004 13:12:51 +0000 (+0000) Subject: * doc/libtool.texi (Cheap tricks): Fix the instructions for making X-Git-Tag: release-1-9b~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f9d3dd3c1cc8c35a9ca60f71da8513c7c3b50b2c;p=thirdparty%2Flibtool.git * 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. --- diff --git a/ChangeLog b/ChangeLog index 78221684b..5ceae6687 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-08-27 Gary V. Vaughan + + * 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 * config/ltmain.in [darwin]: Use the -dylib_file flag and avoid diff --git a/doc/libtool.texi b/doc/libtool.texi index 4c34e91dd..c627ff42d 100644 --- a/doc/libtool.texi +++ b/doc/libtool.texi @@ -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