diff --git a/am-shared/devtest-include.am b/am-shared/devtest-include.am index 8bb1fb49..d0b2b272 100644 --- a/am-shared/devtest-include.am +++ b/am-shared/devtest-include.am @@ -27,5 +27,9 @@ devtest-recursive: devtest-local: @for t in $(TESTS) ; do \ - srcdir=$(srcdir) $(srcdir)/$$t ;\ + if test -f "./$$t" ; then \ + srcdir=$(srcdir) "./$$t" ;\ + else \ + srcdir=$(srcdir) "$(srcdir)/$$t" ;\ + fi ;\ done diff --git a/configure.ac b/configure.ac index 9f764c4e..5d6905a4 100644 --- a/configure.ac +++ b/configure.ac @@ -14,7 +14,7 @@ ## You should have received a copy of the GNU General Public License ## along with this program. If not, see . -AC_INIT([giella-core], [0.25.0], [feedback@divvun.no], [giella-core], [https://github.com/giellalt/giella-core]) +AC_INIT([giella-core], [0.25.1], [feedback@divvun.no], [giella-core], [https://github.com/giellalt/giella-core]) AC_REVISION([$Revision$]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([1.9 tar-pax -Wall -Werror foreign])