]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
fix for README-alpha
authorTom Tromey <tromey@redhat.com>
Sun, 25 Jan 1998 18:18:15 +0000 (18:18 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 25 Jan 1998 18:18:15 +0000 (18:18 +0000)
ChangeLog
automake.in

index 2c0a1b1435d066c869131cd6268e75205ada1999..79e547a562cb30dd6f7b1d0cf7e96c504d07cd6b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sun Jan 25 11:16:53 1998  Tom Tromey  <tromey@cygnus.com>
+
+       * automake.in (generate_makefile): Run handle_minor_options before
+       handle_dist, to make sure README-alpha ends up in distribution.
+       From Jim Meyering.
+
 Tue Jan 13 09:19:33 1998  Tom Tromey  <tromey@cygnus.com>
 
        * aclocal.in (add_file): Hack for Perl 4.  From Seth Alves.
index ce3e6ca45fd87104d2675a8ddd9251cefafc1855..844ecd47f5b05abf4a2b613330202ff9e937eba6 100755 (executable)
@@ -6,7 +6,7 @@ eval 'exec @PERL@ -S $0 ${1+"$@"}'
     if 0;
 
 # automake - create Makefile.in from Makefile.am
-# Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
+# Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -552,6 +552,7 @@ sub generate_makefile
     &handle_headers;
     &handle_subdirs;
     &handle_tags;
+    &handle_minor_options;
     &handle_dist ($makefile);
     &handle_dependencies;
     &handle_tests;
@@ -561,7 +562,6 @@ sub generate_makefile
     &handle_clean;
     &handle_phony;
 
-    &handle_minor_options;
     &check_typos;
 
     if (! -d ($output_directory . '/' . $am_relative_dir))