From 1ea1021a26e973c84c1de1106a7be344bb633a1e Mon Sep 17 00:00:00 2001 From: Lauri Tirkkonen Date: Sun, 6 Jan 2019 19:26:49 +0200 Subject: [PATCH] xproto: install is racy, do not parallelize --- components/x11/xproto/Makefile | 2 ++ make-rules/configure.mk | 1 + 2 files changed, 3 insertions(+) diff --git a/components/x11/xproto/Makefile b/components/x11/xproto/Makefile index 4bab7a9e1..2a53d997b 100644 --- a/components/x11/xproto/Makefile +++ b/components/x11/xproto/Makefile @@ -34,6 +34,8 @@ include $(WS_TOP)/make-rules/prep.mk include $(WS_TOP)/make-rules/configure.mk include $(WS_TOP)/make-rules/ips.mk +COMPONENT_INSTALL_GMAKE_ARGS = -j1 + PATH=/usr/gnu/bin:/usr/bin CONFIGURE_OPTIONS+= --sysconfdir=/etc diff --git a/make-rules/configure.mk b/make-rules/configure.mk index 42348c516..4743e1a87 100644 --- a/make-rules/configure.mk +++ b/make-rules/configure.mk @@ -180,6 +180,7 @@ endif $(BUILD_DIR)/%/.installed: $(BUILD_DIR)/%/.built $(COMPONENT_PRE_INSTALL_ACTION) (cd $(@D) ; $(ENV) $(COMPONENT_INSTALL_ENV) $(MAKE) \ + $(COMPONENT_INSTALL_GMAKE_ARGS) \ $(COMPONENT_INSTALL_ARGS) $(COMPONENT_INSTALL_TARGETS)) $(COMPONENT_POST_INSTALL_ACTION) $(TOUCH) $@ -- 2.11.4.GIT