Skip to content

Commit

Permalink
Make sure devtest target is VPATH safe
Browse files Browse the repository at this point in the history
Handles both configure processed files and those not.
  • Loading branch information
snomos committed May 29, 2024
1 parent 4b83728 commit f5e02ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion am-shared/devtest-include.am
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.
AC_INIT([giella-core], [0.25.0], [[email protected]], [giella-core], [https://github.com/giellalt/giella-core])
AC_INIT([giella-core], [0.25.1], [[email protected]], [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])
Expand Down

0 comments on commit f5e02ae

Please sign in to comment.