From: Stefano Lattarini Date: Fri, 20 Jan 2012 17:03:37 +0000 (+0100) Subject: build: fix automake error due to missing ChangeLog X-Git-Tag: v2.68b~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff2060231a616834908e85f8a24ffab50172a6b4;p=thirdparty%2Fautoconf.git build: fix automake error due to missing ChangeLog Apparently, Automake does not accept the '$(srcdir)/ChangeLog' target in Makefile.am as a declaration that ChangeLog is automatically generated (and thus does not need to exist at automake time). One has to use a *literal* 'ChangeLog' target. Problem introduced in commit v2.68-118-g6ed5195 of 2012-01-17, "maint: generate ChangeLog from git log". * Makefile.ma ($(srcdir)/ChangeLog): Renamed ... (ChangeLog): ... to this. --- diff --git a/Makefile.am b/Makefile.am index 5bf4cb5e..7608874a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -64,7 +64,7 @@ gen-ChangeLog: # bootstrap. Creates a dummy ChangeLog (unless one is already present, # as might be the case for users of vc-dwim) that will be overridden # with a proper one at distribution time. -$(srcdir)/ChangeLog: +ChangeLog: @echo dummy > $@ # Version string management. There are two files to be aware of: