diff --git a/70-make/profile b/70-make/profile new file mode 100644 index 0000000..618e850 --- /dev/null +++ b/70-make/profile @@ -0,0 +1,6 @@ +#!/bin/sh + +# protect against missing 'nproc' +if [ -x "$(command -v nproc)" ]; then + export MAKEOPTS="-j$(nproc)" +fi