From 0b61b534b3fd3b4ff67a8cd6e18b5090ef38a14d Mon Sep 17 00:00:00 2001 From: triallax Date: Fri, 23 Jun 2023 19:35:29 +0100 Subject: [PATCH] common/build-style/gnu-makefile.sh: pass ${makejobs} to install target. Some software compile stuff in the install step. --- common/build-style/gnu-makefile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/build-style/gnu-makefile.sh b/common/build-style/gnu-makefile.sh index c4f4f780f9f6..36ded5fcd3ba 100644 --- a/common/build-style/gnu-makefile.sh +++ b/common/build-style/gnu-makefile.sh @@ -39,5 +39,5 @@ do_install() { : ${make_cmd:=make} : ${make_install_target:=install} - ${make_cmd} STRIP=true PREFIX=/usr prefix=/usr DESTDIR=${DESTDIR} ${make_install_args} ${make_install_target} + ${make_cmd} STRIP=true PREFIX=/usr prefix=/usr DESTDIR=${DESTDIR} ${make_install_args} ${make_install_target} ${makejobs} }