Switch to unified view

a/src/Makefile.am b/src/Makefile.am
...
...
659
659
660
dist_man1_MANS = doc/man/recoll.1 doc/man/recollq.1 doc/man/recollindex.1
660
dist_man1_MANS = doc/man/recoll.1 doc/man/recollq.1 doc/man/recollindex.1
661
dist_man5_MANS = doc/man/recoll.conf.5
661
dist_man5_MANS = doc/man/recoll.conf.5
662
662
663
dist-hook:
663
dist-hook:
664
  (cd $(top_srcdir); find . \
665
            \( -name '*.pyc' -o -name '#*' -o -name '*~' \) -delete)
664
    modified=`hg status | \
666
    modified=`hg status | \
665
        grep -v /$(distdir)/|egrep -v 'debianunitysco|packaging|website'`; \
667
        grep -v /$(distdir)/|egrep -v 'debianunitysco|packaging|website'`; \
666
    if test ! -z "$$modified"; then \
668
    if test ! -z "$$modified"; then \
667
            echo Local directory is modified: $$modified ; exit 1; fi
669
            echo Local directory is modified: $$modified ; exit 1; fi
668
    hg tag -f -m "Release $(VERSION) tagged" RECOLL-$(VERSION)
670
    hg tag -f -m "Release $(VERSION) tagged" RECOLL-$(VERSION)
669