summaryrefslogtreecommitdiff
path: root/cfg.mk
blob: 48d42d715688b6902dae902692246a684564e032 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
old_NEWS_hash = d41d8cd98f00b204e9800998ecf8427e

list_authors = $(GIT) log --pretty=format:%an

sc_git_authors_known:
	@$(list_authors) \
	  | sort -u \
	  | while read line ; \
	    do $(GREP) "$$line" $(srcdir)/AUTHORS >/dev/null 2>&1 \
	      || (echo "$$line does not appear in AUTHORS." ; \
		  exit 1) ; \
	    done