From 0bf8140ba10ccc6b1145790344a60d2dc53f0d35 Mon Sep 17 00:00:00 2001 From: Jeremie Dimino Date: Mon, 9 Jul 2018 09:40:52 +0100 Subject: [PATCH] Fix output-obj tests Signed-off-by: Jeremie Dimino --- test/blackbox-tests/test-cases/output-obj/dune | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/blackbox-tests/test-cases/output-obj/dune b/test/blackbox-tests/test-cases/output-obj/dune index c4858bf5..591b5ab5 100644 --- a/test/blackbox-tests/test-cases/output-obj/dune +++ b/test/blackbox-tests/test-cases/output-obj/dune @@ -21,19 +21,19 @@ (rule (targets static.exe) (deps test.exe%{ext_obj} static.c) - (action (run %{CC} -o %{targets} -I %{ocaml_where} -I . %{deps} + (action (run %{cc} -o %{targets} -I %{ocaml_where} -I . %{deps} %{ocaml-config:native_c_libraries}))) (rule (targets static.bc) (deps test.bc%{ext_obj} static.c) - (action (run %{CC} -o %{targets} -I %{ocaml_where} -I . %{deps} + (action (run %{cc} -o %{targets} -I %{ocaml_where} -I . %{deps} %{ocaml-config:bytecomp_c_libraries}))) (rule (targets dynamic.exe) (deps dynamic.c) - (action (run %{CC} -o %{targets} %{first-dep} %{ocaml-config:native_c_libraries}))) + (action (run %{cc} -o %{targets} %{first-dep} %{ocaml-config:native_c_libraries}))) (alias (name runtest)