From 5e5bcd5f78c7130a2d6f6f6856d081b639e1cc26 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 2 Dec 1998 12:22:09 +0000 Subject: [PATCH] * automake.in (handle_configure): Quote @MAINTAINER_MODE_TRUE@ to avoid problems where AM_MAINTAINER_MODE is put into automake's own configure.in. --- ChangeLog | 4 ++++ automake.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 11e6a27b..42621819 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 1998-12-02 Tom Tromey + * automake.in (handle_configure): Quote @MAINTAINER_MODE_TRUE@ to + avoid problems where AM_MAINTAINER_MODE is put into automake's own + configure.in. + * Makefile.am (cvs-dist): Run `cvs tag' operation in srcdir. Some bugs from François Pinard: diff --git a/automake.in b/automake.in index d0d42350..a30b9806 100755 --- a/automake.in +++ b/automake.in @@ -2906,7 +2906,7 @@ sub handle_configure # uninitialized value error on the next line. # Don't know why. . ': ' - . ($seen_maint_mode ? '@MAINTAINER_MODE_TRUE@ ' : '') + . ($seen_maint_mode ? "\@MAINTAINER_MODE_TRUE\@ " : '') . $amfile . ' ' . '$(top_srcdir)/configure.in $(ACLOCAL_M4)' . ' ' . join (' ', @include_stack) -- 2.43.5