Thanks, I pushed this: >From b0bc98f6a1a0bc6e92522d3c51284b89a446e083 Mon Sep 17 00:00:00 2001 From: Paul Eggert <egg...@cs.ucla.edu> Date: Tue, 23 Apr 2013 21:42:41 -0700 Subject: [PATCH] doc: add missing semicolons to make rules
Problem reported by Peter Eisentraut in <http://lists.gnu.org/archive/html/bug-autoconf/2013-04/msg00007.html>. * doc/autoconf.texi (Automatic Remaking): Append semicolons to rules that need empty commands. --- doc/autoconf.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/autoconf.texi b/doc/autoconf.texi index f895e47..faf6d97 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -3190,12 +3190,12 @@ $(srcdir)/configure: configure.ac aclocal.m4 cd '$(srcdir)' && autoconf # autoheader might not change config.h.in, so touch a stamp file. -$(srcdir)/config.h.in: stamp-h.in +$(srcdir)/config.h.in: stamp-h.in ; $(srcdir)/stamp-h.in: configure.ac aclocal.m4 cd '$(srcdir)' && autoheader echo timestamp > '$(srcdir)/stamp-h.in' -config.h: stamp-h +config.h: stamp-h ; stamp-h: config.h.in config.status ./config.status -- 1.7.11.7