diff options
author | Paul Smith <psmith@gnu.org> | 1999-03-05 05:55:11 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-03-05 05:55:11 +0000 |
commit | 9e6ba6a148aa6e4a6aed496d91bac44323325445 (patch) | |
tree | eafdc0668a04d95c8901d349f545ffdcab0f7138 /configure.in | |
parent | ede263043c9a31110da168ee84a59b1bbb6791c3 (diff) | |
download | gunmake-9e6ba6a148aa6e4a6aed496d91bac44323325445.tar.gz |
* Update FSF address info in copyright notices.
* Update maintainers build process; remove GNUmakefile. Require builders to
run automake && autoreconf by hand.
* Use AC_SUBST_FILE to get the maintMakefile included, rather than GNU
make's include directive, which conflicts with automake 1.4's include
directive.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/configure.in b/configure.in index bc72d7d..87d8062 100644 --- a/configure.in +++ b/configure.in @@ -6,8 +6,6 @@ AC_INIT(vpath.c)dnl dnl A distinctive file to look for in srcdir. AM_INIT_AUTOMAKE(make, 3.77.90) AM_CONFIG_HEADER(config.h) -AM_CONDITIONAL(MAINT_MAKEFILE, test -r $srcdir/maintMakefile) - dnl Regular configure stuff AC_PROG_MAKE_SET @@ -174,6 +172,15 @@ case "$make_cv_sys_gnu_glob" in CPPFLAGS="$CPPFLAGS -I$srcdir/glob" ;; esac + +MAINT_MAKEFILE=/dev/null +if test -r $srcdir/maintMakefile; then + MAINT_MAKEFILE="$srcdir/maintMakefile" +fi +AC_SUBST_FILE(MAINT_MAKEFILE) + +dnl AM_CONDITIONAL(MAINT_MAKEFILE, test -r $srcdir/maintMakefile) + AC_OUTPUT(Makefile glob/Makefile build.sh) case "$make_badcust" in |