bug-autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: suggested rule for remaking config.h is wrong


From: Paul Eggert
Subject: Re: suggested rule for remaking config.h is wrong
Date: Tue, 23 Apr 2013 21:44:08 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130329 Thunderbird/17.0.5

Thanks, I pushed this:

>From b0bc98f6a1a0bc6e92522d3c51284b89a446e083 Mon Sep 17 00:00:00 2001
From: Paul Eggert <address@hidden>
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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]