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