Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Cleanup silly variable name
For some reason I kept swapping THANKS with AUTHORS in my head. Made it
confusing for people reading that rule.
  • Loading branch information
davisp committed Jun 17, 2012
1 parent e64c050 commit 6a631fc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile.am
Expand Up @@ -79,15 +79,15 @@ README.gz: $(top_srcdir)/README
-gzip -9 < $< > $@

THANKS.gz: $(top_srcdir)/THANKS
@sed -e '/^#.*/d' $< > $(top_builddir)/AUTHORS.tmp
@sed -e '/^#.*/d' $< > $(top_builddir)/THANKS.tmp
@git shortlog -se 6c976bd..HEAD \
| grep -v @apache.org \
| sed -E 's/^[[:blank:]]{5}[[:digit:]]+[[:blank:]]/ * /' \
>> $(top_builddir)/AUTHORS.tmp
>> $(top_builddir)/THANKS.tmp
@echo '\nFor a list of authors see the `AUTHORS` file.\n' \
>> $(top_builddir)/AUTHORS.tmp
-gzip -9 < $(top_builddir)/AUTHORS.tmp > $@
@rm $(top_builddir)/AUTHORS.tmp
>> $(top_builddir)/THANKS.tmp
-gzip -9 < $(top_builddir)/THANKS.tmp > $@
@rm $(top_builddir)/THANKS.tmp

check: dev check-js
$(top_builddir)/test/etap/run $(top_srcdir)/test/etap
Expand Down

0 comments on commit 6a631fc

Please sign in to comment.