diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -79,7 +79,7 @@ log: ChangeLog changelog: ChangeLog #svn2cl is available in our contrib. -ChangeLog: ../../common/username.xml +ChangeLog: @if test -d "$$PWD/.git"; then \ ../common/gitlog-to-changelog | sed -e '/\tgit-svn-id:.*/d' > $@.tmp \ && mv -f $@.tmp $@ \ @@ -91,6 +91,6 @@ ChangeLog: ../../common/username.xml echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \ (test -f $@ || echo git-log is required to generate this file >> $@)); \ else \ - svn2cl --accum --authors ../../common/username.xml; \ + svn2cl --accum ; \ rm -f *.bak; \ fi; |