From 90449325ab0dcc3f068fb598d2199b625bda6c5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Sun, 29 May 2016 16:37:55 +0200 Subject: 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. --- Makefile | 18 +----------------- 1 file changed, 1 insertion(+), 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; -- cgit v1.2.1