diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-12-06 21:14:23 +0000 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-12-06 21:14:23 +0000 |
commit | 757634917b10c07228b15bbd905d45d5ad382820 (patch) | |
tree | ed45f3c1e78b55b232d790612e3b3262b08aaa83 /resources/scripts/helpers/build/module | |
parent | 8ee8365f291176b751a1a8deff813f19630e04fe (diff) | |
download | librebootfr-757634917b10c07228b15bbd905d45d5ad382820.tar.gz librebootfr-757634917b10c07228b15bbd905d45d5ad382820.zip |
build/module/coreboot: don't parallelize building of utils
Diffstat (limited to 'resources/scripts/helpers/build/module')
-rwxr-xr-x | resources/scripts/helpers/build/module/coreboot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/scripts/helpers/build/module/coreboot b/resources/scripts/helpers/build/module/coreboot index 09d3cde4..eb99c25c 100755 --- a/resources/scripts/helpers/build/module/coreboot +++ b/resources/scripts/helpers/build/module/coreboot @@ -38,5 +38,5 @@ done # cbfstool, cbmem, nvramtool for util in {cbfs,nvram}tool cbmem; do - make -j$(nproc) -BC coreboot/util/${util} + make -BC coreboot/util/${util} done |