Skip to content

Commit

Permalink
Fix make call in Cygwin environment
Browse files Browse the repository at this point in the history
  • Loading branch information
kit-ty-kate authored and aantron committed Sep 7, 2020
1 parent 517cbcb commit bed7fda
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/c/dune
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"sh configure --host `ocamlc -config | awk '/host/ {print $NF}'` \
'CC=%{cc}' CFLAGS=-DNDEBUG --silent --enable-silent-rules")
(ignore-outputs (bash
"%{make} V=0 -j 4 -o aclocal.m4 -o Makefile.in -o configure \
"$([ '%{os_type}' = Unix ] && echo %{make} || echo make) V=0 -j 4 \
-o aclocal.m4 -o Makefile.in -o configure \
-o configure.status -o Makefile libuv.la"))
(ignore-outputs (bash
"sh libtool --silent --no-warnings --mode install cp libuv.la `pwd`"))))
Expand Down

0 comments on commit bed7fda

Please sign in to comment.