aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2016-05-29 16:37:55 +0200
committerRémi Verschelde <rverschelde@gmail.com>2016-05-29 16:37:55 +0200
commit90449325ab0dcc3f068fb598d2199b625bda6c5e (patch)
treeb01850d6a2f4a798e6df2b1e05d720bf3af2fe89
parent1ee1d32c8276a6e3b28e98a2f7b2e87e58836ae2 (diff)
downloadcommon-data-90449325ab0dcc3f068fb598d2199b625bda6c5e.tar
common-data-90449325ab0dcc3f068fb598d2199b625bda6c5e.tar.gz
common-data-90449325ab0dcc3f068fb598d2199b625bda6c5e.tar.bz2
common-data-90449325ab0dcc3f068fb598d2199b625bda6c5e.tar.xz
common-data-90449325ab0dcc3f068fb598d2199b625bda6c5e.zip
Drop bogus changelog generation instructions
We might want to either drop the old ChangeLog file, or write new instructions that work to update it. But the current ones just committed an empty file.
-rw-r--r--Makefile18
1 files changed, 1 insertions, 17 deletions
diff --git a/Makefile b/Makefile
index ae9072d..e8618e9 100644
--- a/Makefile
+++ b/Makefile
@@ -39,25 +39,9 @@ clean:
# rules to build a distributable rpm
-dist: menus checktag clean changelog
+dist: menus checktag clean
@git archive --prefix=$(NAME)-$(VERSION)/ HEAD | xz > $(NAME)-$(VERSION).tar.xz;
$(info $(NAME)-$(VERSION).tar.bz2 is ready)
tag: checktag
git tag $(TAG); \
-
-.PHONY: ChangeLog log changelog
-
-log: ChangeLog
-
-changelog: ChangeLog
-
-ChangeLog:
- @if test -d "$$PWD/.git"; then \
- ../common/gitlog-to-changelog | sed -e '/\tgit-svn-id:.*/d' > $@.tmp \
- && mv -f $@.tmp $@ \
- && git commit ChangeLog -m 'generated changelog' \
- || (rm -f $@.tmp; \
- echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
- (test -f $@ || echo git-log is required to generate this file >> $@)); \
- fi;