Commit b248025b by Cameron Pope

Look for MAKE_OPTS to override options sent to make to address build failures on some systems

parent 495b248d
......@@ -127,9 +127,11 @@ build_package() {
build_package_standard() {
local package_name="$1"
if [ -z "${MAKE_OPTS+defined}" ]; then
MAKE_OPTS="-j 2"
fi
{ ./configure --prefix="$PREFIX_PATH" $CONFIGURE_OPTS
make -j 2
make $MAKE_OPTS
make install
} >&4 2>&1
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment