Skip to content

Commit

Permalink
build: fix automake error due to missing ChangeLog
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
slattarini committed Jan 20, 2012
1 parent f4be358 commit ff20602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit ff20602

Please sign in to comment.