diff options
Diffstat (limited to 'bin/automake.in')
-rw-r--r-- | bin/automake.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/automake.in b/bin/automake.in index 06f4ee9b2..67a7a9578 100644 --- a/bin/automake.in +++ b/bin/automake.in @@ -3806,7 +3806,7 @@ sub handle_dist () { my $archive_defined = option 'no-dist-gzip' ? 0 : 1; $archive_defined ||= - grep { option "dist-$_" } qw(shar zip tarZ bzip2 lzip xz); + grep { option "dist-$_" } qw(shar zip tarZ bzip2 lzip xz zstd); error (option 'no-dist-gzip', "no-dist-gzip specified but no dist-* specified,\n" . "at least one archive format must be enabled") @@ -6788,6 +6788,7 @@ sub preprocess_file 'GZIP' => ! option 'no-dist-gzip', 'SHAR' => !! option 'dist-shar', 'ZIP' => !! option 'dist-zip', + 'ZSTD' => !! option 'dist-zstd', 'INSTALL-INFO' => ! option 'no-installinfo', 'INSTALL-MAN' => ! option 'no-installman', |