From 9d55bf8c6310915ce1be1b3c324690f1dee2b279 Mon Sep 17 00:00:00 2001 From: Michael E Brown Date: Wed, 12 Dec 2007 12:54:11 -0600 Subject: auto generate AUTHORS file from git. --- Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 844c824..30db941 100644 --- a/Makefile.am +++ b/Makefile.am @@ -52,10 +52,14 @@ pkgpython_PYTHON = \ CLEANFILES += py/*.pyc py/mock/*.pyc py/mock/plugins/*.pyc -dist: ChangeLog +dist: ChangeLog AUTHORS ChangeLog: (GIT_DIR=.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2) +AUTHORS: + (GIT_DIR=.git git-log | grep ^Author | sort |uniq > .authors.tmp && mv .authors.tmp AUTHORS; rm -f .authors.tmp) || (touch AUTHORS; echo 'git directory not found: installing possibly empty AUTHORS.' >&2) + + REPLACE_VARS_ON_INSTALL=$(sbindir)/mock.py install-exec-hook: for i in $(REPLACE_VARS_ON_INSTALL); do \ -- cgit