Commit 898c008e by Fabian M. Borschel

Support selection of 'make' tool via environment variable

parent 4f458144
......@@ -2,6 +2,8 @@
RUBY_BUILD_VERSION="20130104"
MAKE=${MAKE:-make}
set -E
exec 3<&2 # preserve original stderr at fd 3
......@@ -319,8 +321,8 @@ build_package_standard() {
fi
{ ./configure --prefix="$PREFIX_PATH" $CONFIGURE_OPTS
make $MAKE_OPTS
make install
$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