From d22db7a4a3c95bbbe6a4d7a25ed08f9d99fa64e8 Mon Sep 17 00:00:00 2001 From: Ralf Treinen Date: Tue, 10 Mar 2020 21:36:04 +0100 Subject: test coq-makefile/findlib-package-unpacked: only try to invoke 'make' when there is an ocamlopt compiler. --- test-suite/coq-makefile/findlib-package-unpacked/run.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test-suite/coq-makefile/findlib-package-unpacked/run.sh b/test-suite/coq-makefile/findlib-package-unpacked/run.sh index e53a7ed0f7..6d7ae15ee2 100755 --- a/test-suite/coq-makefile/findlib-package-unpacked/run.sh +++ b/test-suite/coq-makefile/findlib-package-unpacked/run.sh @@ -16,5 +16,7 @@ coq_makefile -f _CoqProject -o Makefile cat Makefile.conf cat Makefile.local make -C findlib/foo -make +if which ocamlopt >/dev/null 2>&1; then + make +fi make byte -- cgit v1.2.3