7 lines
116 B
Plaintext
7 lines
116 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# protect against missing 'nproc'
|
||
|
if [ -x "$(command -v nproc)" ]; then
|
||
|
export MAKEOPTS="-j$(nproc)"
|
||
|
fi
|