diff options
author | Francis Rowe <info@gluglug.org.uk> | 2016-03-10 13:42:14 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2016-03-10 13:42:14 (EST) |
commit | f1cc58c58a29e6183f6300c99e1f113edcecffe8 (patch) | |
tree | 8fd04a50c590b71a1d5a22a10a182bd712d7b306 /resources/scripts/helpers/build/module/bucts | |
parent | 4120c8a2f626134fda30390c5f39661379c4a1a2 (diff) | |
download | libreboot-f1cc58c58a29e6183f6300c99e1f113edcecffe8.zip libreboot-f1cc58c58a29e6183f6300c99e1f113edcecffe8.tar.gz libreboot-f1cc58c58a29e6183f6300c99e1f113edcecffe8.tar.bz2 |
build scripts: use $(nproc) not "$(nproc)" for make -j option
Diffstat (limited to 'resources/scripts/helpers/build/module/bucts')
-rwxr-xr-x | resources/scripts/helpers/build/module/bucts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/scripts/helpers/build/module/bucts b/resources/scripts/helpers/build/module/bucts index e011484..6e54fc1 100755 --- a/resources/scripts/helpers/build/module/bucts +++ b/resources/scripts/helpers/build/module/bucts @@ -44,7 +44,7 @@ if [ "${buildtype}" = "static" ]; then fi make clean -make -j"$(nproc)" +make -j$(nproc) if [ "${buildtype}" = "static" ]; then patch "Makefile" -R < "../resources/bucts/patch/staticlink.diff" |