From: Gary V. Vaughan Date: Fri, 5 Mar 2004 17:34:25 +0000 (+0000) Subject: * libtoolize.in: Remove --ltdl-tar. It doesn't work with the X-Git-Tag: release-1-9b~137 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6bfa1584cd264209865f7c70d60cd6e133dfbe4d;p=thirdparty%2Flibtool.git * libtoolize.in: Remove --ltdl-tar. It doesn't work with the current implementation, and seems more or less pointless. * doc/libtool.texi (Invoking libtoolize): Updated. * NEWS: Updated. --- diff --git a/ChangeLog b/ChangeLog index fbd17a4e5..f339646a9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2004-03-05 Gary V. Vaughan + * libtoolize.in: Remove --ltdl-tar. It doesn't work with the + current implementation, and seems more or less pointless. + * doc/libtool.texi (Invoking libtoolize): Updated. + * NEWS: Updated. + * doc/libtool.texi: This manual has not been maintained properly for a number of years. Much of what it said was outdated, or plain wrong with reference to modern autotools. This change diff --git a/NEWS b/NEWS index 43abfa002..d86949c05 100644 --- a/NEWS +++ b/NEWS @@ -15,6 +15,7 @@ New in 1.5b: 2004-??-??; CVS version 1.5a, Libtool team: and libtool m4 macro versions. * Like automake, libtoolize no longer installs config.guess and config.sub by default. Use new --install option to get the old behaviour. +* libtoolize no longer supports the --ltdl-tar option. * libtool script is now created by config.status. Instead of interrogating `./libtool' from configure.ac after calling AC_PROG_LIBTOOL, use the variable names directly. diff --git a/doc/libtool.texi b/doc/libtool.texi index e4e30dae2..163e31d2f 100644 --- a/doc/libtool.texi +++ b/doc/libtool.texi @@ -2036,9 +2036,6 @@ Display a help message and exit. @item --ltdl Install libltdl in a subdirectory of your package. -@item --ltdl-tar -Add the file libltdl.tar.gz to your package. - @item --quiet @itemx -q Work silently. @samp{libtoolize --quiet} is used by @sc{gnu} Automake diff --git a/libtoolize.in b/libtoolize.in index b769596f5..5956c417a 100644 --- a/libtoolize.in +++ b/libtoolize.in @@ -38,7 +38,6 @@ # --help display this message and exit # -i, --install copy missing auxiliary files # --ltdl install libltdl in a subdirectory -# --ltdl-tar install the libltdl tarball # -q, --quiet work silently # -v, --verbose verbosely report processing # --version print version information and exit @@ -77,7 +76,6 @@ opt_force=false opt_install=false opt_link=: opt_ltdl=false -opt_ltdl_tar=false opt_quiet=false opt_verbose=false @@ -213,7 +211,6 @@ func_version () --force|-f) opt_force=: ;; --install|-i) opt_install=: ;; --ltdl) opt_ltdl=: ;; - --ltdl-tar) opt_ltdl_tar=: ;; --quiet|--automake|-q) # --automake is for 1.5 compatibility opt_quiet=: ;; --verbose|-v) opt_verbose=: ;; @@ -614,21 +611,6 @@ func_config_update () # user specified `--with-ltdl'. $opt_ltdl && eval func_copy_all_files "$pkgdatadir/libltdl" libltdl - # Copy all the files from installed libltdl to a tarball in this project, - # if the user specified `--with-ltdl-tar'. - $opt_ltdl_tar && { - if test -f libltdl.tar.gz; then - if $opt_force; then - test -d libltdl && ${RM}r libltdl - func_copy_all_files "$pkgdatadir/libltdl" libltdl - tar -chof - libltdl | gzip --best > libltdl.tar.gz - ${RM}r libltdl - else - func_error "\`libltdl.tar.gz' exists: use \`--force' to overwrite" - fi - fi - } - # Copy all the installed utility files to the auxiliary directory if # `--install' was passed, or else copy just ltmain.sh. $opt_quiet || if test "$auxdir" != .; then