diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-07-26 19:40:49 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-07-26 19:59:18 +0200 |
commit | 7a498f9e8da31615aeb29cc860eb229738aeab2f (patch) | |
tree | 668498cab337303c9c829cc30751d7b0a778a8d7 | |
parent | 7d6b27434de032d8b6f852eb49e788b87a5e7695 (diff) | |
download | automake-7a498f9e8da31615aeb29cc860eb229738aeab2f.tar.gz |
gen-tests: simplify sourcing of helper shell files
This is a follow-up on commit v1.12.2-49-g42fb45b, for an occurrence
of '. "$am_testauxdir"/foo.sh' that wasn't in a test script, but
rather in 'gen-testsuite-part' (ending up in the tests generated by
that script).
* gen-testsuite-part: In the generated 'depcomp*.tap' tests, use
simply:
. depcomp.sh
rather than:
. "$am_testauxdir/depcomp.sh"
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
-rwxr-xr-x | gen-testsuite-part | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gen-testsuite-part b/gen-testsuite-part index 21c26c46d..dee4cddd2 100755 --- a/gen-testsuite-part +++ b/gen-testsuite-part @@ -361,7 +361,8 @@ foreach my $lt (TRUE, FALSE) required="@required" . ./defs || exit 1 plan_ $planned - . "\$am_testauxdir/depcomp.sh"; exit \$? + . depcomp.sh + exit \$? EOF }, 0555); |