From 669ca78990b7ee71c95ad58dcaaa5352da9abd07 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Wed, 14 Jul 2010 14:23:43 -0400 Subject: [PATCH] Fix ChangeLog creation from build dir --- Makefile.in | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 949d25500..456a643e8 100644 --- a/Makefile.in +++ b/Makefile.in @@ -53,14 +53,17 @@ SHELL = @SHELL@ all: config.status for d in $(SUBDIRS) $(SAMPLES); do (cd $$d && $(MAKE) $@) || break; done -install install-dirs install-binaries install-includes install-doc install-plugin uninstall: config.status +install-dirs install-binaries install-includes install-plugin uninstall: config.status + for d in $(SUBDIRS); do (cd $$d && $(MAKE) $@) || break; done + +install install-doc: config.status ChangeLog for d in $(SUBDIRS); do (cd $$d && $(MAKE) $@) || break; done autoconf: autoconf -I m4 ChangeLog: - test -d $(srcdir)/.hg && hg log --style=changelog -b default > $@ + (cd $(srcdir) && test -d .hg && hg log --style=changelog -b default > $@) check: @echo nothing to check