mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-11-11 14:40:55 +01:00
Fix installing Ruby 2.1.0 from trunk
Stop quoting in LDFLAGS and CPPFLAGS. Ruby trunk chokes on it:
3636f8c0f5
Closes #441
This commit is contained in:
parent
de409790d2
commit
0b52061728
1 changed files with 2 additions and 2 deletions
|
|
@ -871,8 +871,8 @@ if [ -n "$VERBOSE" ]; then
|
|||
trap "kill $TAIL_PID" SIGINT SIGTERM EXIT
|
||||
fi
|
||||
|
||||
export LDFLAGS="-L'${PREFIX_PATH}/lib' ${LDFLAGS}"
|
||||
export CPPFLAGS="-I'${PREFIX_PATH}/include' ${CPPFLAGS}"
|
||||
export LDFLAGS="-L${PREFIX_PATH}/lib ${LDFLAGS}"
|
||||
export CPPFLAGS="-I${PREFIX_PATH}/include ${CPPFLAGS}"
|
||||
|
||||
unset RUBYOPT
|
||||
unset RUBYLIB
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue