comparison Makefile.am @ 25801:95eb72d50fb0

build: ensure ChangeLog is built from hg log without --graph * Makefile.am (changelog-from-hg-log): Use 'hg log --no-graph'.
author Mike Miller <mtmiller@octave.org>
date Wed, 15 Aug 2018 13:21:37 -0700
parents 178f6d18c9a8
children 440eb4707570
comparison
equal deleted inserted replaced
25800:7b2312def76b 25801:95eb72d50fb0
360 360
361 define changelog-from-hg-log 361 define changelog-from-hg-log
362 rm -f $@-t && \ 362 rm -f $@-t && \
363 if [ -d $(srcdir)/.hg ]; then \ 363 if [ -d $(srcdir)/.hg ]; then \
364 ( cd $(srcdir); \ 364 ( cd $(srcdir); \
365 hg log --style=build-aux/changelog.tmpl --prune=b0e60ad4ae26 --only-branch=`hg branch`; \ 365 hg log --no-graph --style=build-aux/changelog.tmpl --prune=b0e60ad4ae26 --only-branch=`hg branch`; \
366 echo ""; \ 366 echo ""; \
367 echo "See the files in the directory etc/OLD-ChangeLogs for changes before 2011-04-19"; \ 367 echo "See the files in the directory etc/OLD-ChangeLogs for changes before 2011-04-19"; \
368 ) > $@-t && \ 368 ) > $@-t && \
369 mv $@-t $@; \ 369 mv $@-t $@; \
370 elif [ ! -f $@ ] && [ ! -f $(srcdir)/$@ ]; then \ 370 elif [ ! -f $@ ] && [ ! -f $(srcdir)/$@ ]; then \