From 6b42b38f9bcde8d67435a5bb39f8c0f42e71e6ab Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 23 Apr 2013 21:42:41 -0700 Subject: [PATCH] doc: add missing semicolons to make rules Problem reported by Peter Eisentraut in . * 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 f895e479..faf6d97d 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 -- 2.47.2