1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-25 18:19:00 +02:00

Avoid test failure in non-srcdir build vs. the git tree.

* tests/check.mk (vc_exe_in_TESTS): Run this test only in a
srcdir build directory.  Reported by Andreas Schwab.
This commit is contained in:
Jim Meyering
2007-10-29 07:47:21 +01:00
parent 709a27ba48
commit e1bb6139fb
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -1,3 +1,9 @@
2007-10-29 Jim Meyering <meyering@redhat.com>
Avoid test failure in non-srcdir build vs. the git tree.
* tests/check.mk (vc_exe_in_TESTS): Run this test only in a
srcdir build directory. Reported by Andreas Schwab.
2007-10-28 Jim Meyering <meyering@redhat.com>
Define ENOTSUP, not ENOSYS. Needed on OpenBSD 3.9.
+1 -1
View File
@@ -19,7 +19,7 @@
# one that does not end in '\'.
_v = TESTS
vc_exe_in_TESTS: Makefile
@if test -d $(top_srcdir)/.git; then \
@if test -d $(top_srcdir)/.git && test $(srcdir) = .; then \
sed -n '/^$(_v) = \\$$/,/[^\]$$/p' $(srcdir)/Makefile.am \
| sed 's/^ *//;/^\$$.*/d;/^$(_v) =/d' \
| tr -s '\012\\' ' ' | fmt -1 | sort -u > t1 && \