Displaying 2 results from an estimated 2 matches for "e363f27".
Did you mean:
  136327
  
2015 May 12
4
[PATCH 1/2] mllib: remove spurious check_SCRIPTS from Makefile.am
Not actually useful, as TESTS defines the tests, and it breaks when
oUnit is not available (as it tries to build an oUnit-based unit test).
---
 mllib/Makefile.am | 3 ---
 1 file changed, 3 deletions(-)
diff --git a/mllib/Makefile.am b/mllib/Makefile.am
index 0b43684..e363f27 100644
--- a/mllib/Makefile.am
+++ b/mllib/Makefile.am
@@ -132,9 +132,6 @@ libdir.ml: Makefile
 
 # Tests.
 
-check_SCRIPTS = \
-	common_utils_tests
-
 if HAVE_OCAMLOPT
 common_utils_tests.cmx: OCAMLPACKAGES += $(OCAMLPACKAGES_TESTS)
 common_utils_tests: config.cmx common_gettext.cmx common_utils.c...
2015 May 12
0
Re: [PATCH 1/2] mllib: remove spurious check_SCRIPTS from Makefile.am
...ctually useful, as TESTS defines the tests, and it breaks when
> oUnit is not available (as it tries to build an oUnit-based unit test).
> ---
>  mllib/Makefile.am | 3 ---
>  1 file changed, 3 deletions(-)
> 
> diff --git a/mllib/Makefile.am b/mllib/Makefile.am
> index 0b43684..e363f27 100644
> --- a/mllib/Makefile.am
> +++ b/mllib/Makefile.am
> @@ -132,9 +132,6 @@ libdir.ml: Makefile
>  
>  # Tests.
>  
> -check_SCRIPTS = \
> -	common_utils_tests
> -
>  if HAVE_OCAMLOPT
>  common_utils_tests.cmx: OCAMLPACKAGES += $(OCAMLPACKAGES_TESTS)
>  comm...