]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libtoolize.in: Remove --ltdl-tar. It doesn't work with the
authorGary V. Vaughan <gary@gnu.org>
Fri, 5 Mar 2004 17:34:25 +0000 (17:34 +0000)
committerGary V. Vaughan <gary@gnu.org>
Fri, 5 Mar 2004 17:34:25 +0000 (17:34 +0000)
current implementation, and seems more or less pointless.
* doc/libtool.texi (Invoking libtoolize): Updated.
* NEWS: Updated.

ChangeLog
NEWS
doc/libtool.texi
libtoolize.in

index fbd17a4e56e668ed813a2fbeb41a96a605b47cb9..f339646a9f913f5898fcb17038538bccecb633dc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2004-03-05  Gary V. Vaughan  <gary@gnu.org>
 
+       * 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 43abfa002f8817239233b42a7df984e69d160851..d86949c055a93d818314e2eacf68fed176353273 100644 (file)
--- 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.
index e4e30dae2ee5d19d3acc439d1f366b3a0252608d..163e31d2feab1956a630f20d0d2432288b02c35b 100644 (file)
@@ -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
index b769596f582cd183494d5bffefa1927bbb46ebac..5956c417a8d7d8f92079b62a46c1d72d9e89a51c 100644 (file)
@@ -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