diff options
author | Christian Persch <chpe@src.gnome.org> | 2009-03-15 21:15:55 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2009-03-15 21:15:55 +0800 |
commit | ae90c71077c5c3d55250ada3324a5525943764ef (patch) | |
tree | 70f4db3c067a6bfe53b58eded8b218b72f4115fd | |
parent | 2e987a57b7e16238db7efb9c7f3b8ce25a869caa (diff) | |
download | gsoc2013-epiphany-ae90c71077c5c3d55250ada3324a5525943764ef.tar gsoc2013-epiphany-ae90c71077c5c3d55250ada3324a5525943764ef.tar.gz gsoc2013-epiphany-ae90c71077c5c3d55250ada3324a5525943764ef.tar.bz2 gsoc2013-epiphany-ae90c71077c5c3d55250ada3324a5525943764ef.tar.lz gsoc2013-epiphany-ae90c71077c5c3d55250ada3324a5525943764ef.tar.xz gsoc2013-epiphany-ae90c71077c5c3d55250ada3324a5525943764ef.tar.zst gsoc2013-epiphany-ae90c71077c5c3d55250ada3324a5525943764ef.zip |
Fix ChangeLog generation
svn path=/branches/gnome-2-26/; revision=8895
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index f9d5e29b8..8c139365b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -36,8 +36,10 @@ DISTCHECK_CONFIGURE_FLAGS = \ # Ignore gtk theme cache files on distcheck distuninstallcheck_listfiles = find . -type f -print | grep -v 'icon-theme.cache' -ChangeLog: $(top_srcdir)/.git/HEAD - git log --stat > $@ +ChangeLog: + @if test -f $(top_srcdir)/.git/HEAD; then + git log --stat > $@; \ + fi dist: ChangeLog |