diff options
author | Jim Meyering <jim@meyering.net> | 1996-09-08 18:56:04 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-09-08 18:56:04 +0000 |
commit | e4c1c5efcafb881f274b25bf57e5d975fbe7122e (patch) | |
tree | 430f0c2e2ef65b8b91aaa77511670d46496a40f3 | |
parent | c830d53afbb5cf0b5aee5fc5cd6f77ffe9ef2d5a (diff) | |
download | coreutils-e4c1c5efcafb881f274b25bf57e5d975fbe7122e.tar.xz |
Prefix $in with \$srcdir/ so make check works with VPATH build.
From Uli Drepper.
-rw-r--r-- | tests/sort/build-script.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sort/build-script.pl b/tests/sort/build-script.pl index 7b87247e5..11db4eada 100644 --- a/tests/sort/build-script.pl +++ b/tests/sort/build-script.pl @@ -48,7 +48,7 @@ foreach $test_vector (@Test::t) close (EXP); my $err_output = "t$test_name.err"; - my $cmd = "\$xx $flags $in > $out 2> $err_output"; + my $cmd = "\$xx $flags \$srcdir/$in > $out 2> $err_output"; $exp_name = "\$srcdir/$exp_name"; print <<EOF ; $cmd |