From: Stefano Lattarini Date: Sat, 11 Aug 2012 09:53:05 +0000 (+0200) Subject: [ng] dist: fixup: remove stray references to obsolete archive formats X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=784c2fe78300b7703a557bbe159fe860ac7c62c4;p=thirdparty%2Fautomake.git [ng] dist: fixup: remove stray references to obsolete archive formats * automake.in (handle_dist): Here, to 'shar' and 'tarZ'. Signed-off-by: Stefano Lattarini --- diff --git a/automake.in b/automake.in index 366c16222..bc2ece953 100644 --- a/automake.in +++ b/automake.in @@ -3218,7 +3218,7 @@ sub handle_dist () # compressors, slowest first, for better parallelism in # "make dist". unshift @archive_formats, 'gzip' unless option 'no-dist-gzip'; - foreach my $fmt (qw/shar zip tarZ bzip2 lzip xz/) + foreach my $fmt (qw/zip bzip2 lzip xz/) { unshift @archive_formats, $fmt if option "dist-$fmt"; }