diff options
| author | Théo Zimmermann | 2019-02-05 09:49:54 +0100 |
|---|---|---|
| committer | Théo Zimmermann | 2019-02-05 09:49:54 +0100 |
| commit | 740ec848acc0b127fad7ba5b703bc00364126c71 (patch) | |
| tree | d72ced5aaa9d4b4ba3061e649a0e9462f238b5a0 /kernel | |
| parent | 5c1d7fc460d0b98a1dfbcf151079dbacb64c9330 (diff) | |
| parent | 0439543db9f3be84d59cfdc1dcad34bd114036e3 (diff) | |
Merge PR #8421: [dune] Fix Dune build in Windows.
Ack-by: SkySkimmer
Reviewed-by: Zimmi48
Reviewed-by: gares
Ack-by: maximedenes
Ack-by: ppedrot
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/byterun/dune | 4 | ||||
| -rw-r--r-- | kernel/dune | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/kernel/byterun/dune b/kernel/byterun/dune index 3a714a8a59..c3c44670be 100644 --- a/kernel/byterun/dune +++ b/kernel/byterun/dune @@ -6,5 +6,5 @@ (rule (targets coq_jumptbl.h) - (deps (:h-file coq_instruct.h)) - (action (run ./make_jumptbl.sh %{h-file} %{targets}))) + (deps (:h-file coq_instruct.h) make_jumptbl.sh) + (action (bash "./make_jumptbl.sh %{h-file} %{targets}"))) diff --git a/kernel/dune b/kernel/dune index 79161519ba..1f2d696a36 100644 --- a/kernel/dune +++ b/kernel/dune @@ -8,8 +8,8 @@ (rule (targets copcodes.ml) - (deps (:h-file byterun/coq_instruct.h) make-opcodes) - (action (run ./make_opcodes.sh %{h-file} %{targets}))) + (deps (:h-file byterun/coq_instruct.h) make-opcodes make_opcodes.sh) + (action (bash "./make_opcodes.sh %{h-file} %{targets}"))) (executable (name write_uint63) |
