diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-02-18 09:47:57 +0100 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-02-18 10:32:09 +0100 |
commit | 21af8bfd077dad5411ba07bd2208b6d216ad686f (patch) | |
tree | 2f1a7ce5b4ebb6a739bcf35d3d3f30f2b7e33fac /tests/lex-noyywrap.test | |
parent | 0402db9837e0a482a01d0485a5c1c500d26ac6c3 (diff) | |
download | automake-21af8bfd077dad5411ba07bd2208b6d216ad686f.tar.gz |
tests: avoid FreeBSD make VPATH issues in more tests (see bug#7884)
See also similar change 'v1.11-755-g818bc40' of 07-02-2012,
"tests: work around bug#7884 in many yacc/lex tests". The
rationale for this change is basically the same.
* tests/lex-lib-external.test: Use "yl_distcheck" instead of
bare "$MAKE distcheck" to avoid extra failures caused by
automake bug#7884.
* tests/lex-noyywrap.test: Likewise.
* tests/lex-libobj.test: Likewise.
* tests/man6.test: This test suffers from the same FreeBSD make
incompatibility in VPATH handling that is the source of automake
bug#7884. Since this is caused by rules that are defined in the
Makefile.am by the test itself, rather that being generated by
automake, the best thing to do is to skip this test if we detect
the presence of said make incompatibility (through the function
'useless_vpath_rebuild').
* tests/man8.test: Likewise.
Diffstat (limited to 'tests/lex-noyywrap.test')
-rwxr-xr-x | tests/lex-noyywrap.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lex-noyywrap.test b/tests/lex-noyywrap.test index 5b002c8d7..a0eb731e3 100755 --- a/tests/lex-noyywrap.test +++ b/tests/lex-noyywrap.test @@ -67,6 +67,6 @@ if cross_compiling; then :; else fi # Sanity check on distribution. -$MAKE distcheck DISTCHECK_CONFIGURE_FLAGS='LEXLIB="none needed"' +yl_distcheck DISTCHECK_CONFIGURE_FLAGS='LEXLIB="none needed"' : |