On Tue, 2002-04-02 at 12:20, Max Horn wrote:
> At 11:21 Uhr +0200 02.04.2002, Ralf Corsepius wrote:
>
> Are you sure? Did you look at the Makefile.am? I did look at it, and 
> it looks perfectly valid to me. No double use of EXTRA_DIST for 
> example.

There is a double use of EXTRA_DIST here: it occurs because a separate
file ($(top_srcdir)/help/sgmldocs.make) is included into the makefile:
which contains an assignment to EXTRA_DIST.

In detail:

help/C/Makefile.am
    defines "EXTRA_DIST=sgmldocs.make"
    includes help/sgmldocs.make

help/sgmldocs.make
    defines "EXTRA_DIST=$(sgml_files) $(doc_DATA) $(omffile) $(figs)"

In older versions of automake, the new definition will silently override
the earlier definition.  In newer automake versions, the warning will be
given.

Note that help/C/sgmldocs.make does not actually exist, so the first
assignment to EXTRA_DIST is wrong anyway.

The correct solution is to remove the first EXTRA_DIST: vis

Index: help/C/Makefile.am
===================================================================
RCS file: /cvs/gnome/evolution/help/C/Makefile.am,v
retrieving revision 1.27
diff -u -r1.27 Makefile.am
--- help/C/Makefile.am  28 Mar 2002 00:20:55 -0000      1.27
+++ help/C/Makefile.am  2 Apr 2002 12:48:39 -0000
@@ -1,4 +1,3 @@
-EXTRA_DIST = sgmldocs.make
 figs = \
        figures/calendar.png                    \
        figures/config-cal.png                  \

-- 
Richard

_______________________________________________
evolution-hackers maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution-hackers

Reply via email to