diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2007-01-02 17:48:20 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2007-01-02 17:48:20 +0000 |
commit | bd2e7663c5c1805f7023814443f99f3861052e08 (patch) | |
tree | 4e40d190d97a1413aa4568668563a1ea1d473f20 /Makefile.am | |
parent | 63ee779c7afa17916b140ab2076bd16c90543b56 (diff) |
Only populate the ChangeLog with "darcs changes" if in a Darcs tree
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 9de1f51d7..ce972d6db 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,4 +4,4 @@ SUBDIRS = src data m4 generate tests dist-hook: chmod a+w ${distdir}/ChangeLog - darcs changes >${distdir}/ChangeLog + if test -d _darcs; then darcs changes >${distdir}/ChangeLog; fi |