* automake.in (handle_dist): Do nothing in Cygnus mode.
authorTom Tromey <tromey@redhat.com>
Wed, 21 Feb 2001 21:07:15 +0000 (21:07 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 21 Feb 2001 21:07:15 +0000 (21:07 +0000)
ChangeLog
automake.in

index 6e6c6dc..bcaa403 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-02-21  Tom Tromey  <tromey@redhat.com>
+
+       * automake.in (handle_dist): Do nothing in Cygnus mode.
+
 2001-02-21  Pavel Roskin  <proski@gnu.org>
 
        * header-vars.am: Remove tabs before variable definitions.
index 6efdb87..6ed2f74 100755 (executable)
@@ -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');