summaryrefslogtreecommitdiff
path: root/gen-testsuite-part
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-07-26 19:40:49 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-07-26 19:59:18 +0200
commit7a498f9e8da31615aeb29cc860eb229738aeab2f (patch)
tree668498cab337303c9c829cc30751d7b0a778a8d7 /gen-testsuite-part
parent7d6b27434de032d8b6f852eb49e788b87a5e7695 (diff)
downloadautomake-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>
Diffstat (limited to 'gen-testsuite-part')
-rwxr-xr-xgen-testsuite-part3
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);