diff options
author | Jim Meyering <jim@meyering.net> | 2007-10-09 14:52:20 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-10-09 14:52:20 +0000 |
commit | 495b4155a35f83ff10596c14fd2404fce6bc4d02 (patch) | |
tree | e0ff3cf1485393ab6ee622e6d6b24bce6ec5d90b /lib/Automake/Options.pm | |
parent | e4fc6914766059876bc36168ae7fbd4efe90eafe (diff) | |
download | automake-495b4155a35f83ff10596c14fd2404fce6bc4d02.tar.gz |
Add lzma compression support.
* NEWS: Mention it.
* automake.in (handle_dist): Recognize dist-lzma.
(make_paragraphs): Map LZMA to dist-lzma.
* doc/automake.texi (Dist): Add dist-lzma.
(Options): Likewise.
* lib/Automake/Options.pm (_process_option_list):
* lib/am/distdir.am (dist-lzma): New rule.
(dist dist-all): Add command to create an lzma-compressed tarball.
(distcheck): Handle lzma-compressed tarballs just like the others.
* tests/defs.in: Test for lzma, too.
* tests/lzma.test: New file, based on nogzip.test.
* tests/Makefile.am (TESTS): Add lzma.test.
* tests/Makefile.in: Regenerate.
Suggestion from Karl Berry.
Author: Jim Meyering <meyering@redhat.com>
Diffstat (limited to 'lib/Automake/Options.pm')
-rw-r--r-- | lib/Automake/Options.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Automake/Options.pm b/lib/Automake/Options.pm index c4c87757a..a63f97ad6 100644 --- a/lib/Automake/Options.pm +++ b/lib/Automake/Options.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2003, 2004, 2006 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2006, 2007 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -261,6 +261,7 @@ sub _process_option_list (\%$@) elsif ($_ eq 'no-installman' || $_ eq 'no-installinfo' || $_ eq 'dist-shar' || $_ eq 'dist-zip' || $_ eq 'dist-tarZ' || $_ eq 'dist-bzip2' + || $_ eq 'dist-lzma' || $_ eq 'no-dist-gzip' || $_ eq 'no-dist' || $_ eq 'dejagnu' || $_ eq 'no-texinfo.tex' || $_ eq 'readme-alpha' || $_ eq 'check-news' |