From: Alexandre Duret-Lutz Date: Sat, 27 Dec 2003 15:39:45 +0000 (+0000) Subject: * automake.in (@common_files): Move configure, configure.ac, and X-Git-Tag: Release-1-8b~118 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b0ea352792c2ed3d164eba6ccedbddb1b973a03;p=thirdparty%2Fautomake.git * automake.in (@common_files): Move configure, configure.ac, and configure.in ... (@common_sometimes): ... here so that these files do not appear twice in DIST_COMMON. --- diff --git a/ChangeLog b/ChangeLog index 564b76f76..af475bb0f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2003-12-27 Alexandre Duret-Lutz + * automake.in (@common_files): Move configure, configure.ac, and + configure.in ... + (@common_sometimes): ... here so that these files do not appear + twice in DIST_COMMON. + * automake.in (maybe_push_required_file): Add $(srcdir) in front a required files outside the current directory or its subdirectories. * lib/am/distdir.am (distdir): Update comment. diff --git a/Makefile.in b/Makefile.in index d3d5ca974..c084eb021 100644 --- a/Makefile.in +++ b/Makefile.in @@ -37,7 +37,7 @@ POST_UNINSTALL = : subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \ - ChangeLog INSTALL NEWS THANKS TODO configure configure.ac + ChangeLog INSTALL NEWS THANKS TODO ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/amversion.m4 \ $(top_srcdir)/m4/auxdir.m4 $(top_srcdir)/m4/init.m4 \ diff --git a/automake.in b/automake.in index 194c6f6e6..c6cf31ea9 100755 --- a/automake.in +++ b/automake.in @@ -214,14 +214,15 @@ my @common_files = (qw(ABOUT-GNU ABOUT-NLS AUTHORS BACKLOG COPYING COPYING.DOC COPYING.LIB COPYING.LESSER ChangeLog INSTALL NEWS README THANKS TODO ansi2knr.1 ansi2knr.c compile config.guess config.rpath config.sub - configure configure.ac configure.in depcomp elisp-comp - install-sh libversion.in mdate-sh missing mkinstalldirs - py-compile texinfo.tex ylwrap), + depcomp elisp-comp install-sh libversion.in mdate-sh missing + mkinstalldirs py-compile texinfo.tex ylwrap), @libtool_files, @libtool_sometimes); -# Commonly used files we auto-include, but only sometimes. +# Commonly used files we auto-include, but only sometimes. This list +# is used for the --help output only. my @common_sometimes = - qw(aclocal.m4 acconfig.h config.h.top config.h.bot stamp-vti); + qw(aclocal.m4 acconfig.h config.h.top config.h.bot configure + configure.ac configure.in stamp-vti); # Standard directories from the GNU Coding Standards, and additional # pkg* directories from Automake. Stored in a hash for fast member check.