automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: DIST_COMMON broke


From: Derek R. Price
Subject: Re: DIST_COMMON broke
Date: Wed, 07 Feb 2001 13:09:23 -0500

"Derek R. Price" wrote:

> Looks like someone broke the 'make dist' target in the last few days.
> Specifically, input files from AC_OUTPUT are no longer being added to
> DIST_COMMON...

Here's the patch.

Derek

--
Derek Price                      CVS Solutions Architect ( http://CVSHome.org )
mailto:address@hidden     OpenAvenue ( http://OpenAvenue.com )
--
I am not a 32 year old woman.
I am not a 32 year old woman.
I am not a 32 year old woman...

          - Bart Simpson on chalkboard, _The Simpsons_


Index: ChangeLog
===================================================================
RCS file: /cvs/automake/ChangeLog,v
retrieving revision 1.999
diff -u -r1.999 ChangeLog
--- ChangeLog   2001/02/06 15:10:35     1.999
+++ ChangeLog   2001/02/07 18:07:01
@@ -1,3 +1,8 @@
+2001-02-07  Derek Price  <address@hidden>
+
+       * automake.in (handle_configure): make sure AC_CONFIG_FILES input files
+       get distributed
+
 2001-02-06  Pavel Roskin  <address@hidden>
 
        * automake.in (handle_dependencies): Rename AM_INCLUDE to
Index: automake.in
===================================================================
RCS file: /cvs/automake/automake.in,v
retrieving revision 1.865
diff -u -r1.865 automake.in
--- automake.in 2001/02/06 15:03:58     1.865
+++ automake.in 2001/02/07 18:07:05
@@ -3514,6 +3514,12 @@
        # Require all input files.
        &require_file_with_conf_line ($ac_output_line, $FOREIGN,
                                      &rewrite_inputs_into_dependencies (0, 
@inputs));
+
+       # input files also need to be distributed
+       foreach (@inputs)
+       {
+           &maybe_push_required_file(&dirname($_), &basename($_), $_);
+       }
     }
 
     # These files get removed by "make clean".

reply via email to

[Prev in Thread] Current Thread [Next in Thread]