Commit ea7dd51f by Sam Stephenson

Move MAKE default near the others

parent 83728089
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
RUBY_BUILD_VERSION="20130118" RUBY_BUILD_VERSION="20130118"
MAKE=${MAKE:-make}
set -E set -E
exec 3<&2 # preserve original stderr at fd 3 exec 3<&2 # preserve original stderr at fd 3
...@@ -578,6 +576,10 @@ else ...@@ -578,6 +576,10 @@ else
TMP="${TMPDIR%/}" TMP="${TMPDIR%/}"
fi fi
if [ -z "$MAKE" ]; then
MAKE="make"
fi
if [ -n "$RUBY_BUILD_CACHE_PATH" ] && [ -d "$RUBY_BUILD_CACHE_PATH" ]; then if [ -n "$RUBY_BUILD_CACHE_PATH" ] && [ -d "$RUBY_BUILD_CACHE_PATH" ]; then
RUBY_BUILD_CACHE_PATH="${RUBY_BUILD_CACHE_PATH%/}" RUBY_BUILD_CACHE_PATH="${RUBY_BUILD_CACHE_PATH%/}"
else else
......
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