diff options
author | Lucía Andrea Illanes Albornoz <lucia@luciaillanes.de> | 2023-03-26 13:27:44 +0200 |
---|---|---|
committer | Lucía Andrea Illanes Albornoz <lucia@luciaillanes.de> | 2023-03-26 13:27:44 +0200 |
commit | 4cc4c46f2569e155b815c24d1c045d85b029c9f5 (patch) | |
tree | e3b437d6cbb3d11affdecd4b574311bce4c8bb64 /patches | |
parent | 1cbe2029e27bcfbce4f99c5788b66268255a1973 (diff) | |
download | midipix_build-4cc4c46f2569e155b815c24d1c045d85b029c9f5.tar.bz2 midipix_build-4cc4c46f2569e155b815c24d1c045d85b029c9f5.tar.xz |
patches/bmake{,_host}.local.patch: fix parallel build.
groups/010.host_deps.group:bmake_host:${PKG_MAKEFLAGS_LOADAVG}: set to none.
groups/010.host_deps.group:bmake_host:${PKG_MAKEFLAGS_PARALLELISE}: revert to default.
groups/231.native_packages_etc.group:bmake:${PKG_MAKEFLAGS_LOADAVG}: set to none.
groups/231.native_packages_etc.group:bmake:${PKG_MAKEFLAGS_PARALLELISE}: revert to default.
Diffstat (limited to 'patches')
-rw-r--r-- | patches/bmake.local.patch | 10 | ||||
-rw-r--r-- | patches/bmake_host.local.patch | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/patches/bmake.local.patch b/patches/bmake.local.patch index 32bf1d36..20d45524 100644 --- a/patches/bmake.local.patch +++ b/patches/bmake.local.patch @@ -24,3 +24,13 @@ : # NAME: # install.sh - portable version of install(1) +--- bmake/makefile.in.orig 2022-12-26 19:16:39.881930779 +0100 ++++ bmake/makefile.in 2023-03-23 18:09:58.883692945 +0100 +@@ -9,6 +9,6 @@ + all: build + + build clean install test: +- ${srcdir}/boot-strap --prefix=${prefix} -o . op=$@ ++ MAKEFLAGS="${MAKEFLAGS%*--jobserver-auth=[0-9],[0=9]*}" ${srcdir}/boot-strap --prefix=${prefix} -o . op=$@ + + diff --git a/patches/bmake_host.local.patch b/patches/bmake_host.local.patch index 7973489d..0999df4d 100644 --- a/patches/bmake_host.local.patch +++ b/patches/bmake_host.local.patch @@ -5,3 +5,13 @@ : # NAME: # install.sh - portable version of install(1) +--- bmake/makefile.in.orig 2022-12-26 19:16:39.881930779 +0100 ++++ bmake/makefile.in 2023-03-23 18:09:58.883692945 +0100 +@@ -9,6 +9,6 @@ + all: build + + build clean install test: +- ${srcdir}/boot-strap --prefix=${prefix} -o . op=$@ ++ MAKEFLAGS="${MAKEFLAGS%*--jobserver-auth=[0-9],[0=9]*}" ${srcdir}/boot-strap --prefix=${prefix} -o . op=$@ + + |