From 5cb25e8ec1fdd40ac58998901fa7358c59282611 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 21 Feb 2001 21:07:15 +0000 Subject: [PATCH] * automake.in (handle_dist): Do nothing in Cygnus mode. --- ChangeLog | 4 ++++ automake.in | 4 ++++ 2 files changed, 8 insertions(+) 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'); -- 2.43.5