Commit 0b520617 by SHIBATA Hiroshi Committed by Mislav Marohnić

Fix installing Ruby 2.1.0 from trunk

Stop quoting in LDFLAGS and CPPFLAGS. Ruby trunk chokes on it:
https://github.com/ruby/ruby/commit/3636f8c0f56ddf15e26e28e7a38e748588fad976

Closes #441
parent de409790
...@@ -871,8 +871,8 @@ if [ -n "$VERBOSE" ]; then ...@@ -871,8 +871,8 @@ if [ -n "$VERBOSE" ]; then
trap "kill $TAIL_PID" SIGINT SIGTERM EXIT trap "kill $TAIL_PID" SIGINT SIGTERM EXIT
fi fi
export LDFLAGS="-L'${PREFIX_PATH}/lib' ${LDFLAGS}" export LDFLAGS="-L${PREFIX_PATH}/lib ${LDFLAGS}"
export CPPFLAGS="-I'${PREFIX_PATH}/include' ${CPPFLAGS}" export CPPFLAGS="-I${PREFIX_PATH}/include ${CPPFLAGS}"
unset RUBYOPT unset RUBYOPT
unset RUBYLIB unset RUBYLIB
......
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