Skip to content

Commit b3b3c9f

Browse files
authored
Merge pull request #557 from dra27/cygwin-opam-file
Correct the backend selection for Cygwin
2 parents f69ba32 + 406efc8 commit b3b3c9f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dune-project

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@
7272
(kcas (and (>= 0.3.0) :with-test))
7373
(yojson (and (>= 2.0.2) :with-test))
7474
(eio_linux (and (= :version) (= :os "linux")))
75-
(eio_posix (and (= :version) (<> :os-family "windows")))
76-
(eio_windows (and (= :version) (= :os-family "windows")))))
75+
(eio_posix (and (= :version) (<> :os "win32")))
76+
(eio_windows (and (= :version) (= :os "win32")))))
7777
(using mdx 0.2)

eio_main.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ depends: [
1414
"kcas" {>= "0.3.0" & with-test}
1515
"yojson" {>= "2.0.2" & with-test}
1616
"eio_linux" {= version & os = "linux"}
17-
"eio_posix" {= version & os-family != "windows"}
18-
"eio_windows" {= version & os-family = "windows"}
17+
"eio_posix" {= version & os != "win32"}
18+
"eio_windows" {= version & os = "win32"}
1919
"odoc" {with-doc}
2020
]
2121
build: [

0 commit comments

Comments
 (0)