759f8b1
From f3770fa7afa6c9f8a38336c4d0ee735bbb60216c Mon Sep 17 00:00:00 2001
759f8b1
From: Lennart Poettering <lennart@poettering.net>
759f8b1
Date: Mon, 20 Oct 2008 20:33:28 +0200
759f8b1
Subject: [PATCH] Make missing git-changelog.perl non-fatal
759f8b1
759f8b1
---
759f8b1
 Makefile.am |    2 +-
759f8b1
 1 files changed, 1 insertions(+), 1 deletions(-)
759f8b1
759f8b1
diff --git a/Makefile.am b/Makefile.am
759f8b1
index facce0d..ebc5e69 100644
759f8b1
--- a/Makefile.am
759f8b1
+++ b/Makefile.am
759f8b1
@@ -58,7 +58,7 @@ dist-hook:
759f8b1
 	if test -d .git ; then \
759f8b1
 		git pull ; \
759f8b1
 		chmod u+w ${distdir}/ChangeLog || true ; \
759f8b1
-		git-changelog.perl > ${distdir}/ChangeLog ; \
759f8b1
+		( git-changelog.perl || echo "git-changelog.perl failed." ) > ${distdir}/ChangeLog 2>&1 ; \
759f8b1
 	fi
759f8b1
 
759f8b1
 .PHONY: homepage distcleancheck doxygen
759f8b1
-- 
759f8b1
1.6.0.3
759f8b1