From: Tom Tromey Date: Wed, 21 Feb 2001 21:07:15 +0000 (+0000) Subject: * automake.in (handle_dist): Do nothing in Cygnus mode. X-Git-Tag: handle-languages~271 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=5cb25e8ec1fdd40ac58998901fa7358c59282611;p=automake.git * automake.in (handle_dist): Do nothing in Cygnus mode. --- diff --git a/ChangeLog b/ChangeLog index 6e6c6dc9..bcaa4031 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-02-21 Tom Tromey + + * automake.in (handle_dist): Do nothing in Cygnus mode. + 2001-02-21 Pavel Roskin * header-vars.am: Remove tabs before variable definitions. diff --git a/automake.in b/automake.in index 6efdb872..6ed2f74b 100755 --- a/automake.in +++ b/automake.in @@ -2664,6 +2664,10 @@ sub handle_dist { my ($makefile) = @_; + # `make dist' isn't used in a Cygnus-style tree. + # Omit the rules so that people don't try to use them. + return if $cygnus_mode; + # Set up maint_charset. $local_maint_charset = &variable_value ('MAINT_CHARSET') if &variable_defined ('MAINT_CHARSET');