[flac-dev] make fullcheck fails

lvqcl lvqcl.mail at gmail.com
Mon Feb 23 01:05:37 PST 2015


Erik de Castro Lopo wrote:

> The fullcheck 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/Makefile.am
index ba09d1d..6319891 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -48,6 +48,6 @@ EXTRA_DIST = \
  	strip_non_asm_libtool_args.sh

  fullcheck:
-	(cd test && make fullcheck)
+	(cd test && make check)

  CLEANFILES = *~


More information about the flac-dev mailing list