* 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.
This commit is contained in:
Gary V. Vaughan 2004-08-27 13:12:51 +00:00
parent aed01108fd
commit f9d3dd3c1c
2 changed files with 12 additions and 2 deletions

View File

@ -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

View 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