search for: ba09d1d

Displaying 2 results from an estimated 2 matches for "ba09d1d".

Did you mean: 6ba09dd
2015 Feb 22
2
make fullcheck fails
fullcheck target was removed from test/Makefile.am, but not from <root>/Makefile.am. So `make fullcheck' fails with the following message: ... *** No rule to make target `fullcheck'. Stop. ...
2015 Feb 23
1
make fullcheck fails
...target was dumped because the extra tests in that target > were pulled into the regular 'make check' target. My point was that Makefile.am in the root folder still have fullcheck target. So it make sense either to remove it from this file: diff --git a/Makefile.am b/Makefile.am index ba09d1d..4b81e6e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -47,7 +47,4 @@ EXTRA_DIST = \ ltmain.sh \ strip_non_asm_libtool_args.sh -fullcheck: - (cd test && make fullcheck) - CLEANFILES = *~ ...or to keep it for compatibility but change its definition: diff --git a/Makefile.am b/Ma...