+2014-01-28 Roumen Petrov <bugtrack@roumenpetrov.info> (tiny change)
+
+ tests: fix "make check" under VPATH builds
+ Reported at:
+ <https://lists.gnu.org/archive/html/bug-gettext/2014-01/msg00012.html>.
+ * configure.ac: Output init-env instead of init.cfg.
+
2013-07-25 Daiki Ueno <ueno@gnu.org>
tests: allow each test to run individually without 'make'
AC_CONFIG_FILES([tests/Makefile])
-AC_CONFIG_FILES([tests/init.cfg], [changequote(<<,>>)
+AC_CONFIG_FILES([tests/init-env], [changequote(<<,>>)
# Replace occurrences of make variables with shell variables so they
# can be adjusted in test scripts.
- sed -e 's|\$(\([^)]*\))|${\1}|g' < tests/init.cfg > tests/init.cfg.tmp
- mv tests/init.cfg.tmp tests/init.cfg
+ sed -e 's|\$(\([^)]*\))|${\1}|g' < tests/init-env > tests/init-env.tmp
+ mv tests/init-env.tmp tests/init-env
changequote([,])])
AC_CONFIG_FILES([gnulib-tests/Makefile])
+2014-01-28 Roumen Petrov <bugtrack@roumenpetrov.info> (tiny change)
+
+ tests: fix "make check" under VPATH builds
+ Reported at:
+ <https://lists.gnu.org/archive/html/bug-gettext/2014-01/msg00012.html>.
+ * init-env: New file renamed from init.cfg.in.
+ * init.cfg.in: Remove.
+ * init.cfg: Read $builddir/init-env.
+
2014-01-28 Roumen Petrov <bugtrack@roumenpetrov.info> (tiny change)
Support configuration with absolute path.
--- /dev/null
+test -f "./init-env" \
+ && . "./init-env"