From dbc77b31296158095a89f425c7818f293e912956 Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Sat, 5 Sep 2020 09:57:19 +0200 Subject: [PATCH] dist: remove apparently unused python/recoll/Makefile --- src/Makefile.am | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 0f4d2f08..9e0ffc6b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -536,7 +536,6 @@ python/pychm/recollchm/extra.c \ python/pychm/recollchm/swig_chm.c \ python/pychm/recollchm/swig_chm.i \ python/pychm/setup.py.in \ -python/recoll/Makefile \ python/recoll/pyrclextract.cpp \ python/recoll/pyrecoll.cpp \ python/recoll/pyrecoll.h \ @@ -755,6 +754,8 @@ dist_man5_MANS = doc/man/recoll.conf.5 dist-hook: (cd $(top_srcdir); find . \ \( -name '*.pyc' -o -name '#*' -o -name '*~' \) -delete) - test -z "`git status -s | grep -v '??' | grep -v Makefile.am`" - vers=`echo $(VERSION) | sed -e 's/~/_/g'`;\ - git tag -a RECOLL-$$vers -m "Release $$vers tagged" + if test -z "$(NOTAG)";then \ + test -z "`git status -s|grep -v recoll-$(VERSION)`"||exit 1; \ + vers=`echo $(VERSION) | sed -e 's/~/_/g'`;\ + git tag -a RECOLL-$$vers -m "Release $$vers tagged"; \ + fi