From 53eff77140fae7ed6476143b899610bebf671711 Mon Sep 17 00:00:00 2001 From: Brad Aagaard Date: Wed, 30 Oct 2024 12:02:58 -0600 Subject: [PATCH] FIX: Export test data to absolute build directory. --- tests/pytests/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pytests/Makefile.am b/tests/pytests/Makefile.am index 08804cb..fcea1da 100644 --- a/tests/pytests/Makefile.am +++ b/tests/pytests/Makefile.am @@ -40,7 +40,7 @@ dist_noinst_DATA = \ # 'export' the input files by performing a mock install -export_datadir = $(top_builddir)/tests/pytests/pyre/ +export_datadir = $(abs_builddir)/pyre export-data: $(noinst_DATA) if [ "X$(top_srcdir)" != "X$(top_builddir)" ]; then $(install_sh) -d $(export_datadir); for f in $(dist_noinst_DATA); do $(install_sh_DATA) $(srcdir)/$$f $(export_datadir); done; fi