From 64675ecffb05311e024af6817a4219a9bbfc8062 Mon Sep 17 00:00:00 2001 From: Lauri Tirkkonen Date: Thu, 23 May 2019 09:38:18 +0300 Subject: [PATCH] nghttp2: don't build 32/64 at the same time after configure, the build runs automake/autoconf in the src dir, which can race. --- components/nghttp2/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/components/nghttp2/Makefile b/components/nghttp2/Makefile index a0b0bf780..9a54b3654 100644 --- a/components/nghttp2/Makefile +++ b/components/nghttp2/Makefile @@ -39,6 +39,7 @@ CONFIGURE_OPTIONS += --disable-python-bindings CONFIGURE_OPTIONS += --disable-app build: $(BUILD_32_and_64) +$(BUILD_32): $(BUILD_64) install: $(INSTALL_32_and_64) -- 2.11.4.GIT