From d0c2ad397565ee833b2ea7fd913c3cc5c7e235a9 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 28 May 2018 13:26:49 +0200 Subject: [PATCH] build: fix cygwin install Use the right file path and variable name for the posix.h header file. Introduced when commit ce41af28 ("cygwin: include uv-posix.h header") was merged from the v1.x branch, where it is the correct path, into the master branch. PR-URL: https://github.com/libuv/libuv/pull/1849 Reviewed-By: Colin Ihrig --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index f8b61c61..c4e6007d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -344,7 +344,7 @@ libuv_la_SOURCES += src/unix/android-ifaddrs.c \ endif if CYGWIN -include_HEADERS += include/uv-posix.h +uvinclude_HEADERS += include/uv/posix.h libuv_la_CFLAGS += -D_GNU_SOURCE libuv_la_SOURCES += src/unix/cygwin.c \ src/unix/bsd-ifaddrs.c \