diff options
Diffstat (limited to 'resources/scripts/helpers/build/module')
-rwxr-xr-x | resources/scripts/helpers/build/module/bucts | 2 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/module/flashrom | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/resources/scripts/helpers/build/module/bucts b/resources/scripts/helpers/build/module/bucts index e0114842..6e54fc1b 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" 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 |