aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorFunda Wang <fwang@mageia.org>2012-01-06 14:17:20 +0000
committerFunda Wang <fwang@mageia.org>2012-01-06 14:17:20 +0000
commit77f8bdcab63ed130191ad31fbc3dd86ed6b88d2d (patch)
treeb9449f1cd0a93fb73efd7f27a9478be6513d2c6f /Makefile
parentfa5cfbd87a429f5300871039f279b31122e694b6 (diff)
downloadcommon-data-77f8bdcab63ed130191ad31fbc3dd86ed6b88d2d.tar
common-data-77f8bdcab63ed130191ad31fbc3dd86ed6b88d2d.tar.gz
common-data-77f8bdcab63ed130191ad31fbc3dd86ed6b88d2d.tar.bz2
common-data-77f8bdcab63ed130191ad31fbc3dd86ed6b88d2d.tar.xz
common-data-77f8bdcab63ed130191ad31fbc3dd86ed6b88d2d.zip
do not rely on username to generate changelog
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f31dc7d..c1f467f 100644
--- a/Makefile
+++ b/Makefile
@@ -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;