summaryrefslogtreecommitdiffstats
path: root/ipa-client/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'ipa-client/Makefile.am')
-rw-r--r--ipa-client/Makefile.am20
1 files changed, 0 insertions, 20 deletions
diff --git a/ipa-client/Makefile.am b/ipa-client/Makefile.am
index b9c7020f3..0da351c6a 100644
--- a/ipa-client/Makefile.am
+++ b/ipa-client/Makefile.am
@@ -97,7 +97,6 @@ EXTRA_DIST = \
README \
HACKING \
NEWS \
- ChangeLog \
$(NULL)
DISTCLEANFILES = \
@@ -125,22 +124,3 @@ MAINTAINERCLEANFILES = \
py-compile \
$(NULL)
-# Creating ChangeLog from hg log (taken from cairo/Makefile.am):
-
-ChangeLog: $(srcdir)/ChangeLog
-
-$(srcdir)/ChangeLog:
- @if test -d "$(srcdir)/../.hg"; then \
- (cd "$(srcdir)" && \
- ./missing --run hg log --verbose) | fmt --split-only > $@.tmp \
- && mv -f $@.tmp $@ \
- || ($(RM) $@.tmp; \
- echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
- (test -f $@ || echo hg log is required to generate this file >> $@)); \
- else \
- test -f $@ || \
- (echo A hg checkout and hg -log is required to generate ChangeLog >&2 && \
- echo A hg checkout and hg log is required to generate this file >> $@); \
- fi
-
-.PHONY: ChangeLog $(srcdir)/ChangeLog