Make missing git-changelog.perl non-fatal

This commit is contained in:
Lennart Poettering 2008-10-20 20:33:28 +02:00
parent d675058358
commit b709e1d7b4

View file

@ -58,7 +58,7 @@ dist-hook:
if test -d .git ; then \ if test -d .git ; then \
git pull ; \ git pull ; \
chmod u+w ${distdir}/ChangeLog || true ; \ chmod u+w ${distdir}/ChangeLog || true ; \
git-changelog.perl > ${distdir}/ChangeLog ; \ ( git-changelog.perl || echo "git-changelog.perl failed." ) > ${distdir}/ChangeLog 2>&1 ; \
fi fi
.PHONY: homepage distcleancheck doxygen .PHONY: homepage distcleancheck doxygen