automake.in


Log

Author Commit Date CI Message
Akim Demaille 4ec2083b 2001-02-09T03:38:16 * automake.in (&transform): Use `my', not `local'. (&transform_cond): New. (&get_object_extension, &handle_texinfo, &handle_tags) (&handle_dist_worker, &handle_dist, &add_depend2, &handle_clean) (&handle_tests_dejagnu): Use it. * texinfos.am, lisp.am, header.am, dist.am, distdir.am, depend2.am * dejagnu.am, data.am, clean.am: Adjust to the new syntax.
Akim Demaille 7cda827c 2001-02-09T02:48:24 * automake.in: Various formatting changes, and modernization of Perl constructs. (&backname): New. (&handle_configure, define_standard_variables): Use it.
Tom Tromey 2c095a8d 2001-02-09T02:30:27 * automake.in (file_contents): Only add $actions if any are found. Fixes new failure in pr87.test.
Tom Tromey 68cbb321 2001-02-08T05:48:09 * automake.in (handle_dependencies): Use _am_include, not AMINCLUDE. * tests/exsource.test: Use _am_include, not AMINCLUDE. * m4/make.m4 (AM_MAKE_INCLUDE): Use _am_include, not AMINCLUDE.
Tom Tromey a83155d5 2001-02-07T21:15:06 * automake.in (handle_configure): Handle case where output file is in subdir with no Makefile of its own. Fixes remake3.test, distcommon.test.
Pavel Roskin f8a4ccd9 2001-02-06T15:03:59 * automake.in (handle_dependencies): Rename AM_INCLUDE to AMINCLUDE. * m4/make.m4 (AM_MAKE_INCLUDE): Likewise. * tests/exsource.test: Likewise.
Akim Demaille 3d392023 2001-02-06T10:21:38 * automake.in (handle_configure): fix syntax error
Akim Demaille de7f0818 2001-02-06T10:17:57 * subdirs.am: This file is the exception: clean recursive targets are called by the clean targets, not the clean-am targets. Otherwise we have a circular dependency: clean -> clean-am -> clean-recursive -> clean. * automake.in (handle_clean): Bind `-local' targets to `-am' targets, not top targets. Don't declare -recursive dependencies of the clean targets: `subdirs.am' did it. Less hard coded knowledge, transfered into... * clean.am: here.
Akim Demaille c85255be 2001-02-06T09:22:15 Fix `unless' uses.
Akim Demaille 8a34b58d 2001-02-06T09:09:36 Monstro unsplitable patch. The aim is to remove hard coded knowledge about clean targets from automake.in, leaving them in the *.am files. In addition to the mechanic needed to factor some dependencies, it appears some rules (most notably distclean and maintainer-clean) need factored actions. So first, be ready to catch factored rules. * automake.in (&file_contents): For the time being, use an extended $RULE_PATTERN which is able to match any kind of rules, with or without dependency, with or without actions. Handle all the rules uniformly, storing in %actions the factored actions. (&flatten, &target_cmp): New. (&handle_factored_dependencies): Output the %actions. No longer special case `clean'. Output the rules in alphabetical order, but keeping `.PHONY' last. Now we must not use &push_phony_cleaners, which is doing all sort of magic to push a bit of everything in all the clean targets. The biggest problem being that, making a Cartesian product, it requires many useless targets. The `*.am' file know better. But first, register the new factored rules. * automake.in (&initialize_per_input): Include clean, mostlyclean, maintainer-clean, distclean and their `*-am' counterpart in %dependencies. Initialize %actions. (get_object_extension, handle_texinfo, handle_tags, handle_multilib) handle_dependencies, handle_subdirs, handle_configure, handle_clean) (handle_emacs_lisp, handle_python): Don't play with &push_phony_cleaners nor &depend and `clean'. * texinfos.am, texi-vers.am, tags-clean.am: * subdirs.am,python-clean.am, multilib.am, lisp-clean.am: * libtool.am, kr-extra.am, depend.am, compile.am, clean.am: * clean-kr.am, clean-hdr.am: Do it. Whenever a target is empty, just remove it, it will no longer be called. There is still some magic about clean to hard code. But really, that's the end of &do_one_clean_target. * automake.in (&do_one_clean_target): Kaboom out. (&handle_clean): Rewrite the magic code. (&am_install_var): No longer use &push_phony_cleaners, nor depend on `clean'. (&push_phony_cleaners): Kaboom too.
Akim Demaille 279adc2a 2001-02-06T09:08:56 * automake.in (do_one_clean_target): Don't hard code knowledge about libtool, and maintainer-clean. * clean.am, libtool.am: Handle these.
Akim Demaille c9a4efae 2001-02-05T09:11:10 * automake.in (handle_texinfo): No longer hard code the clean targets. (texinfos.am): Include them.
Akim Demaille fddb6ef1 2001-02-05T09:06:41 * m4/regex.m4: Use AC_LIBSOURCES. * automake.in (scan_autoconf_traces): Trace AC_LIBSOURCE, not _AC_LIBOBJ_DECL.
Tom Tromey daea6dee 2001-02-05T06:59:03 * m4/Makefile.am (m4data_DATA): Added make.m4. * automake.in (handle_dependencies): Use @AM_INCLUDE@ to include dependency files. * m4/depend.m4 (AM_DEPNDENCIES): Require AM_MAKE_INCLUDE. Copy depcomp to subdir. * m4/make.m4: New file.
Pavel Roskin b955e025 2001-02-05T01:42:12 * automake.in (handle_dist_worker): Remove a line that is now in distdir.am.
Tom Tromey 19c2eb96 2001-02-04T23:49:53 2001-02-04 Kevin Ryde <user42@zip.com.au> * automake.in (handle_configure): Call config.status with empty CONFIG_LINKS and CONFIG_COMMANDS when regenerating a file.
Akim Demaille 8f0f4563 2001-02-04T15:10:23 * distdir.am (distdir): New file, extracted from... * automake.in (handle_dist_worker): here. Adjust.
Akim Demaille 7435a92b 2001-02-04T14:43:00 * automake.in (@clean): Remove, replaced by... ($dependencies{'clean'}): this. Use `&depend' instead of push'ing into @clean. (handle_factored_dependencies): For the time being, skip 'clean'. (do_one_clean_target): Don't ask for argument 1 and 4 as they are always `clean', and `@clean'.
Akim Demaille 38a041ba 2001-02-04T14:42:37 * automake.in (%dependencies): Don't be initialize globally for all the files, but in... (&initialize_per_input): here. (&depend): New. (@phony): Replace all occurrences with the corresponding &depend invocation.
Tom Tromey 276aa452 2001-02-04T04:03:08 2000-12-29 Derek Price <derek.price@openavenue.com> * automake.in (handle_dependencies): Switched the DEP_FILES definition to be conditional on @AMDEP@.
Tom Tromey 0edc0b41 2001-02-04T03:29:15 * automake.in (scan_one_autoconf_file): Disable warning about AM_PROG_LIBTOOL.
Tom Tromey fbed01b8 2001-02-04T03:27:52 * automake.in (handle_configure): Don't modify variable which aliases list element. Don't push @inputs onto the dist list. Fixes colon7.test. (initialize_per_input) [dist_dirs]: New variable. (handle_dist_worker): Use global dist_dirs. (handle_configure): Set dist_dirs entries at toplevel.
Pavel Roskin a543ded5 2001-02-02T15:10:13 * automake.in (scan_autoconf_traces): Restore trace messages.
Pavel Roskin b65c732a 2001-02-02T12:33:19 * automake.in (handle_aclocal_m4): Fix stripping of the initial "./" from the dependencies of aclocal.m4. Reported by Ralf Corsepius.
Pavel Roskin 2ac1ddae 2001-02-01T22:51:40 * automake.in: Remove all debugging messages.
Akim Demaille 061b0532 2001-01-31T17:47:54 * automake.in (add_depend2): Quote properly $obj and $source.
Akim Demaille 148a155a 2001-01-31T16:50:02 * depend2.am: Instead of replacing @PFX@ in $(@PFX@COMPILE), and then replacing `$(@PFX@COMPILE)' for the files that need some special flags, use only @COMPILE@. Similarly for @LTCOMPILE@. Try to document this file. * automake.in (add_depend2): Adjust to these changes.
Akim Demaille 7a394d5e 2001-01-31T14:36:21 * automake.in (%factored_dependencies): New. (file_contents): Use it. (handle_phony): Rename as... (handle_factored_dependencies): this. * subdirs.am: No need for convolved syntax to declare .PHONY.
Akim Demaille d75b0320 2001-01-31T14:23:21 * automake.in: maintainer-check fixes.
Akim Demaille b2669526 2001-01-31T14:16:17 * automake.in (file_contents): Rewrite: instead of trying to parse it line by line, first swallow it completely into $CONTENTS, *then*, parse it *paragraph* by paragraph.
Akim Demaille 746021b7 2001-01-31T13:39:22 * automake.in (file_contents): Remove. (file_contents_with_transform): Swap the order of the arguments, and rename as... (file_contents): this. Adjust all uses.
Tom Tromey 823b9cc8 2001-01-31T04:00:45 * automake.in (scan_one_autoconf_file): Don't mention omit_dependencies.
Akim Demaille e8355a9a 2001-01-29T17:37:22 * automake.in (&scan_autoconf_config_files): Extract from &scan_one_autoconf_file. (&scan_one_autoconf_file): Use it. (&scan_autoconf_traces): New. ($scan_autoconf_files): Use it.
Akim Demaille 0fcabc77 2001-01-29T17:36:44 * texinfos.am, tags.am, subdirs.am, multilib.am, mans.am: Add a .PHONY target. * automake.in (handle_texinfo, handle_man_pages, handle_multilib) (handle_etags, handle_subdirs): Don't push into @phony.
Akim Demaille e397e2f3 2001-01-29T12:01:43 * automake.in (scan_one_autoconf_file): Correctly recognize configure.ac.
Akim Demaille 11ae63e4 2001-01-29T12:00:56 * automake.in (handle_tests_dejagnu): New, extracted from... (handle_tests): here. Use `.PHONY:'.
Akim Demaille f2808296 2001-01-29T09:41:43 * automake.in (handle_phony): Sort. (file_contents_with_transform): Catch `.PHONY:'. (handle_tests): Instead dumping the hard coded target check-TESTS and registering its .PHONYsm, get them from... * check.am: here, new file.
Akim Demaille f985cce3 2001-01-29T09:30:02 * automake.in (add_depend2): Use &transform.
Akim Demaille a44e29eb 2001-01-29T09:27:18 * automake.in (handle_tags): Use &transform. (am_error, am_line_error, am_conf_error, read_am_file): Use directly arrays in strings, no need for &join. Require Perl 5. * Makefile.am (maintainer-check): Use grep -w when looking for words.
Akim Demaille 5345069b 2001-01-29T09:17:29 * automake.in (prog_error): New. Spread its use.
Akim Demaille 6b1db06f 2001-01-29T09:16:35 * automake.in (handle_single_transform_list): if (@list) { foreach (@list) ...} can be written as a simple `foreach' loop.
Akim Demaille 6a93be56 2001-01-29T09:16:00 * automake.in (define_standard_variables): Use &transform instead of build_rx.
Akim Demaille 2fcc601f 2001-01-29T09:14:26 * automake.in (handle_texinfo): Use the new $texinfodir instead of the removed $texinfo_tex.
Akim Demaille 24170bbc 2001-01-29T09:12:15 * automake.in (handle_libraries, handle_ltlibraries): Use &transform.
Akim Demaille 72fb36b1 2001-01-29T09:00:32 * automake.in (handle_programs) <xexe>: Remove, replaced by `exeext'. Use it, and &transform.
Akim Demaille 341bb713 2001-01-29T08:58:00 * automake.in (get_object_extension) <$default_includes>: New. Use it and &transform.
Tom Tromey 1ea47381 2001-01-29T06:15:51 * automake.in (variable_value_as_list_worker): Handle entries in %am_var_defs. Fixes listval.test.
Akim Demaille 225eebfa 2001-01-26T15:07:45 * automake.in (handle_texinfo): Don't use $conf_pat, just $conf_dir to transform MDDIR since now &transform handles the escaping of RE special characters by itself.
Tom Tromey e36d38fd 2001-01-25T03:28:51 * automake.in (handle_libraries): Use $configure_ac; typo fix.
Tom Tromey f0d10ac4 2001-01-25T03:26:55 * automake.in (transform): Quote substitution.
Tom Tromey 1c3a6ac2 2001-01-21T20:46:28 2001-01-21 Alexandre Duret-Lutz <duret_g@epita.fr> Tom Tromey <tromey@redhat.com> * automake.in (obsolete_rx): Match whole macro names, not substrings. aclocal.in (obsolete_rx): Likewise.
Akim Demaille 67b81047 2001-01-18T17:20:09 * automake.in (handle_texinfo): Use &transform, and transform CONFIGURE_AC. Reported by Lars Hecking, and diagnosed by Raja R Harinath.
Akim Demaille 48a522a9 2001-01-16T13:31:54 automake.in: Remove development code. Reported by Lars.
Akim Demaille 4ea6c12e 2001-01-16T11:15:21 Let Automake support `configure.ac'. * automake.in: In the comments, prefer `configure.ac' to `configure.in'. When using &am_conf_error, don't repeat `in configure.in', since the function already reports it. When referring to `configure.in' use `$configure_ac' instead. (configure_ac): New global variable. (scan_configure, scan_one_configure_file): Rename as... (scan_autoconf_files, scan_one_autoconf_file): this. (scan_autoconf_files): Compute $configure_ac. (transform): New function. (handle_configure): Use it to transform CONFIGURE_AC in `remake.am' and in `remake-hdr.am'. (common_files): Also consider `configure.ac'. Use consistently single quotes. * aclocal.in (configure_ac): New variable. Use it. * texi-vers.am: Depend on CONFIGURE_AC not configure.in. * remake.am: Likewise. * remake-hdr.am: Likewise.
Tom Tromey 17428a19 2001-01-16T06:34:03 * automake.in (handle_single_transform_list): Don't print rule here when source is in subdir and object is not. Fixes subobj4.test.
Tom Tromey c5efe60e 2001-01-16T04:14:30 * automake.in (handle_single_transform_list): Correctly compute $nonansi_obj. Fixes cxxansi.test.
Tom Tromey f15fa67f 2001-01-13T18:56:19 2001-01-13 Kevin Ryde <user42@zip.com.au> * automake.in (handle_ltlibraries): Omit -rpath from check_LTLIBRARIES, as per noinst_LTLIBRARIES.
Tom Tromey 7f23c6d3 2000-12-23T21:05:21 * automake.in (handle_dist_worker): Always define DIST_SUBDIRS. Re-fixes pr87.test.
Tom Tromey d39c6bd8 2000-12-23T20:11:56 From Rusty Ballinger: * automake.in (handle_java): Don't skip `noinst' prefix.
Tom Tromey 22f6fae1 2000-12-23T01:06:03 From Raja R Harinath: * automake.in (libtoolize_sometimes): New global. (initialize_global_constants): Added libtoolize_sometimes to common_files.
Tom Tromey 38bd301a 2000-12-22T05:52:37 * automake.in (libtoolize_files): Removed ltconfig. (initialize_global_constants): Added ltconfig to common_files.
Tom Tromey 316d9d9d 2000-12-22T05:23:54 2000-12-21 Kevin Ryde <user42@zip.com.au> * automake.in (handle_footer): Generate .SUFFIXES target when user defines suffixes but automake does not.
Tom Tromey 9a65b8d6 2000-12-21T06:07:14 2000-12-20 Marc Espie <espie@openbsd.org> * automake.in (handle_texinfo): Make path of $vtexi explicit in dependency. * texi-vers.am: Likewise.
Tom Tromey 12dc0f81 2000-12-21T02:09:21 From Kevin Ryde: * automake.in (handle_footer): Always push user suffixes at the start of .SUFFIXES:. * automake.texi (Suffixes): Updated to reflect new suffix handling.
Tom Tromey 61fcad39 2000-12-19T04:48:32 * automake.in (handle_built_sources): Removed. (handle_merge_targets): Handle BUILT_SOURCES. * automake.texi (Sources): Updated documentation of BUILT_SOURCES.
Tom Tromey 4f34ae7c 2000-12-18T01:04:24 * automake.in (handle_ltlibraries): Check for LDFLAGS variables before using values.
Tom Tromey 6af1e88e 2000-12-17T21:33:24 * automake.in (handle_ltlibraries): Allow _LDFLAGS to be conditionally defined. Fixes PR automake/77 and ldflags.test.
Tom Tromey 5cff1ae0 2000-11-26T01:39:48 * automake.in (file_contents_with_transform): Added file name and line number to error report. (MACRO_PATTERH, BOGUS_MACRO_PATTERN): Leading spaces are ok.
Tom Tromey 5b0222f7 2000-11-23T21:42:38 * automake.in (require_file_internal): Pass $file as second argument to maybe_push_required_file. Fixes PR automake/87.
Akim Demaille 6039975c 2000-10-23T18:58:33 * aclocal.in (write_aclocal): Don't write aclocal.m4 with CRLFs. This circumvents a bug in Cygwin bash. * automake.in (generate_makefile): Don't write Makefile.in files with CRLFs, as it causes problems for the dependency-file extraction in AM_OUTPUT_DEPENDENCY_COMMANDS.
Akim Demaille bd4a1d5a 2000-10-19T09:27:23 * automake.in (handle_merge_targets): Allow parallel install with forced relink.
Pavel Roskin d10b9069 2000-10-18T03:26:55 * automake.in (handle_aclocal_m4): exclude aclocal.m4 and acinclude.m4 from the dependencies of aclocal.m4 to avoid circular and duplicated dependencies. Strip "./" from the dependencies.
Akim Demaille a2c34841 2000-10-16T09:01:36 * aclocal.in, aclocal.m4: Standardize FSF Copyright statements. * automake.in, automake.texi: Likewise. * clean-kr.am, clean.am: Likewise. * comp-vars.am: Likewise. * compile, compile.am: Likewise. * data-clean.am: Likewise. * data.am: Likewise. * dejagnu.am: Likewise. * depcomp: Likewise. * depend.am, depend2.am: Likewise. * dist-vars.am, dist.am: Likewise. * elisp-comp: Likewise. * footer.am: Likewise. * header-vars.am, header.am: Likewise. * java-clean.am java.am: Likewise. * kr-extra.am: Likewise. * library.am: Likewise. * libs-clean.am, libs.am: Likewise. * libtool.am: Likewise. * lisp-clean.am lisp.am: Likewise. * ltlib-clean.am ltlib.am: Likewise. * ltlibrary.am: Likewise. * m4/Makefile.in: Likewise. * m4/strtod.m4: Likewise. * mans-vars.am, mans.am: Likewise. * mdate-sh: Likewise. * missing: Likewise. * multilib.am: Likewise. * program.am: Likewise. * progs-clean.am, progs.am: Likewise. * python-clean.am, python.am: Likewise. * remake-hdr.am, remake.am: Likewise. * scripts.am: Likewise. * subdirs.am: Likewise. * tags-clean.am, tags.am: Likewise. * texi-vers.am: Likewise. * texinfos.am: Likewise. * ylwrap: Likewise.
Pavel Roskin 9d71309a 2000-10-10T01:03:42 * automake.in (handle_aclocal_m4): If ACLOCAL_M4_SOURCES is defined use it as the list of M4 files aclocal.m4 depends on.
Tom Tromey 981b5409 2000-09-15T20:09:55 2000-09-15 Alexandre Duret-Lutz <duret_g@epita.fr> * automake.in (initialize_global_constants): End the result of dist-bzip2 with tar.bz2, not bz2.
Tom Tromey 5096665d 2000-08-30T17:54:33 Fix for PR automake/72: * automake.in (initialize_per_input): Define `need_link'. (finish_languages): Use need_link. (handle_source_transform): Set need_link if required.
Tom Tromey ae2f7480 2000-08-28T23:33:28 * automake.in (yacc, yaccxx, lex, lexxx): Set `derived-autodep' key. (register_language): Default the `derived-autodep' option. (handle_single_transform_list): Add to %dep_files if language has `derived-autodep' set. Re-fixes lex4.test.
Tom Tromey 805e5b53 2000-08-27T23:42:18 * automake.in (handle_single_transform_list): Only add to %dep_files if language is found and supports automatic dependency tracking. Fixes PR automake/75.
Tom Tromey fe3ac389 2000-08-27T20:13:19 * automake.in (am_primary_prefixes): Don't set `valid' for configure variables that don't satisfy the other constraints. Fixes PR automake/68.
Tom Tromey da2d6085 2000-08-26T20:52:57 2000-04-14 Victor V. Vengerov <vvv@oktet.ru> Fix for PR automake/67. * automake.in (handle_multilib): remove .am suffix in fragment name passed to file_contents. * m4/multi.m4: Add missing ')' in AC_ARG_ENABLE invocation. Remove external quotes in first arg of AC_OUTPUT_COMMANDS. Remove unnecessary "rel-to-top-srcdir" before config-ml.in.
Tom Tromey 8bc6c15d 2000-08-26T20:28:37 * automake.in (handle_man_pages): Generate install targets for man even if man_MANS not defined. From `danpb'. Fixes PR automake/73.
Jim Meyering ee02dbf0 2000-08-06T13:34:09 (handle_dependencies): Set $require_file_found{'depcomp'} if the depcomp file exists, before calling require_config_file on `depcomp'. This makes require_file_internal skip its buggy existence test that would make automake fail (with `required file `lib/depcomp' not found') when AC_CONFIG_AUX_DIR is not set. This change change does not fix the existing bug where, if `depcomp' is not present in the build directory (at the top level), automake still gives the inaccurate diagnostic about *lib*/depcomp rather than ./depcomp.
Tom Tromey eb6a0b71 2000-07-14T01:09:40 2000-07-13 Kevin Ryde <user42@zip.com.au> * automake.in (am_install_var): Apply the $(EXEEXT) hack to EXTRA_PROGRAMS as well as other _PROGRAMS.
Jim Meyering 65864b67 2000-07-02T21:55:20 (scan_one_configure_file): Recognize AC_LIBOBJ.
Tom Tromey bf49a9a9 2000-05-12T00:02:29 * automake.in (handle_tests): Work correctly if TESTS is empty; print nothing if it is. From Kevin Ryde.
Jim Meyering dbe71c27 2000-05-05T08:56:36 2000-05-04 Akim Demaille <akim@epita.fr> AM_INIT_AUTOMAKE is no longer optional, so don't look for `VERSION=' and `PACKAGE='. * automake.in (seen_package, seen_version): Remove initializations of unnecessary variables. (scan_one_configure_file): Don't set them. (scan_configure): Don't use them.
Jim Meyering f37617d3 2000-04-26T12:16:24 (scan_one_configure_file): Handle the AC_CONFIG_FILES macro. Based on a patch from Harlan Stenn.
Jim Meyering e1cb0829 2000-04-15T08:30:14 (scan_one_configure_file): Also recognize AC_CONFIG_HEADERS. Remove trailing blanks.
Tom Tromey 7d55ecd3 2000-04-05T20:55:48 * automake.in (require_file_internal): Pass --copy to libtoolize if automake was run with `--copy'.
Tom Tromey d757e6cc 2000-03-20T00:12:59 * aclocal.in (parse_arguments): Copyright 2000. (write_aclocal): Likewise. * automake.in (parse_arguments): Copyright 2000. (initialize_global_constants): Likewise.
Tom Tromey 538f4ad7 2000-03-20T00:04:24 * automake.in (generate_makefile): Call handle_dist after handle_dependencies and handle_tests. Fixes subobj3.test and pr19.test regressions.
Tom Tromey 50dcfdbd 2000-03-19T23:41:37 * automake.in (handle_data): Pass -candist instead of -defaultdist, for the compatibility.
Tom Tromey d5f19447 2000-03-19T23:33:42 Fix for test nodepcomp.test: * automake.in (require_file_internal): Use readlink on symlinks. Only unlink file if we are going to try to add it again. (handle_dependencies): Require `depcomp' here. (scan_configure): Don't require `depcomp'.
Tom Tromey 46ba6b31 2000-03-19T23:13:16 Fix for test nodepcomp.test: * automake.in (handle_dependencies): Require `depcomp' here. (scan_configure): Don't require `depcomp'.
Tom Tromey 73bf71ae 2000-03-19T23:03:40 2000-03-16 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp> * automake.in (handle_configure): Remove $(BUILT_SOURCES) from the rule to remake Makefile, whether $use_dependencies is true or not. This was a historical one and doesn't make sense any longer.
Tom Tromey 0d11d9e4 2000-03-19T22:34:20 More for PR automake/38: * automake.texi (Invoking Automake): Document --force-missing. * automake.in (force_missing): New global. (parse_arguments): Recognize --force-missing. (initialize_global_constants): Document --force-missing. (require_file_internal): Handle --force-missing.
Tom Tromey 023c8a80 2000-03-19T22:25:13 Fix for PR automake/38: * automake.in (require_file_internal): Check for and handle dangling symlinks. Fixes symlink2.test.
Tom Tromey af18dda2 2000-03-19T21:54:13 Fix for PR automake/45: * automake.texi (configure): Mention requirement to run AM_INIT_AUTOMAKE. (Requirements): Removed most text. * automake.in (seen_init_automake): New global. (scan_configure): Error if AM_INIT_AUTOMAKE not seen. (scan_one_configure_file): Don't support AM_INIT_GUILE_MODULE. Set seen_init_automake if needed.
Tom Tromey 1c736895 2000-03-19T21:04:46 Fix for PR automake/41: * automake.in (require_file_found): New global. (require_file_internal): Set require_file_found entry. (handle_texinfo): Require file any number of times.
Tom Tromey 924a4c41 2000-03-19T20:37:06 * automake.in (handle_dist_worker): Exit if `cp' fails. Fixes install2.test.