diff options
author | Francis Rowe <info@gluglug.org.uk> | 2016-03-10 18:42:14 +0000 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2016-03-10 18:42:14 +0000 |
commit | f1cc58c58a29e6183f6300c99e1f113edcecffe8 (patch) | |
tree | 8fd04a50c590b71a1d5a22a10a182bd712d7b306 /resources/scripts/helpers/build/module/flashrom | |
parent | 4120c8a2f626134fda30390c5f39661379c4a1a2 (diff) | |
download | librebootfr-f1cc58c58a29e6183f6300c99e1f113edcecffe8.tar.gz librebootfr-f1cc58c58a29e6183f6300c99e1f113edcecffe8.zip |
build scripts: use $(nproc) not "$(nproc)" for make -j option
Diffstat (limited to 'resources/scripts/helpers/build/module/flashrom')
-rwxr-xr-x | resources/scripts/helpers/build/module/flashrom | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/resources/scripts/helpers/build/module/flashrom b/resources/scripts/helpers/build/module/flashrom index 920b77dc..3664f565 100755 --- a/resources/scripts/helpers/build/module/flashrom +++ b/resources/scripts/helpers/build/module/flashrom @@ -34,12 +34,12 @@ cd "flashrom/" make clean if (( $# != 1 )); then - make -j"$(nproc)" + make -j$(nproc) else if [ "${1}" = "static" ]; then - make SHARED=0 CC='gcc -static' -j"$(nproc)" + make SHARED=0 CC='gcc -static' -j$(nproc) else - make -j"$(nproc)" + make -j$(nproc) fi fi @@ -60,12 +60,12 @@ do make clean if (( $# != 1 )); then - make -j"$(nproc)" + make -j$(nproc) else if [ "${1}" = "static" ]; then - make SHARED=0 CC='gcc -static' -j"$(nproc)" + make SHARED=0 CC='gcc -static' -j$(nproc) else - make -j"$(nproc)" + make -j$(nproc) fi fi |