diff options
| author | Lennart Poettering <lennart@poettering.net> | 2008-10-20 20:33:28 +0200 |
|---|---|---|
| committer | Lennart Poettering <lennart@poettering.net> | 2008-10-23 23:01:13 +0200 |
| commit | f3770fa7afa6c9f8a38336c4d0ee735bbb60216c (patch) | |
| tree | c3cf0e9ecfb08fbe8fdc7c3a129fb8af83ff0700 | |
| parent | ac4b0afadbd58b5313ed9d2c6b71999cb3898c13 (diff) | |
Make missing git-changelog.perl non-fatal
| -rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index facce0df..ebc5e694 100644 --- a/Makefile.am +++ b/Makefile.am @@ -58,7 +58,7 @@ dist-hook: if test -d .git ; then \ git pull ; \ chmod u+w ${distdir}/ChangeLog || true ; \ - git-changelog.perl > ${distdir}/ChangeLog ; \ + ( git-changelog.perl || echo "git-changelog.perl failed." ) > ${distdir}/ChangeLog 2>&1 ; \ fi .PHONY: homepage distcleancheck doxygen |
