summaryrefslogtreecommitdiff
path: root/lib/Automake/Options.pm
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-01-01 13:23:19 +0100
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-01-01 13:23:19 +0100
commit02e90723551e707d77fb972aa47b4bc3f0fb0029 (patch)
tree66dd8937515520982a2e8c82a93df67ddb7fc578 /lib/Automake/Options.pm
parentc1b14e966c2aa929e80bdfb259d0a81813859509 (diff)
downloadautomake-02e90723551e707d77fb972aa47b4bc3f0fb0029.tar.gz
dist: remove support for lzma (superseded by xz and lzip)
See also commit `v1.11-611-ge637fa2' (from maint), where support for lzma compression of distribution archive had been deprecated. * NEWS: Update. * lib/Automake/Options.pm: Error out if the `dist-lzma' option is used. * lib/am/distdir.am: Remove all support for the creation of a lzma-compressed distribution archive. * tests/lzma.test: Update.
Diffstat (limited to 'lib/Automake/Options.pm')
-rw-r--r--lib/Automake/Options.pm7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/Automake/Options.pm b/lib/Automake/Options.pm
index 34c026c28..75a739253 100644
--- a/lib/Automake/Options.pm
+++ b/lib/Automake/Options.pm
@@ -274,11 +274,8 @@ sub _process_option_list (\%@)
}
elsif ($_ eq 'dist-lzma')
{
- # Creation of distribution tarball compressed with lzma is
- # deprecated, will be removed in the next major release.
- msg 'obsolete', $where,
- "lzma compression is deprecated; use `dist-xz' " .
- "or `dist-lzip' instead\n";
+ error ($where, "support for lzma-compressed distribution " .
+ "archives has been removed");
}
elsif ($_ eq 'no-installman' || $_ eq 'no-installinfo'
|| $_ eq 'dist-shar' || $_ eq 'dist-zip'