mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-09-30 13:01:24 +02:00
Force copying files for mruby
When installing mruby-dev, the cp command doesn't use the force flag. This causes an issue when using a custom build configuration (via MRUBY_CONFIG environment variable) and installing mrbgems from Github, as the pack files in the git repositories are read-only.
This commit is contained in:
parent
c1bd4134a9
commit
273bc17fe7
1 changed files with 1 additions and 1 deletions
|
@ -449,7 +449,7 @@ build_package_mruby() {
|
|||
|
||||
{ rake
|
||||
mkdir -p "$PREFIX_PATH"
|
||||
cp -R build/host/* "$PREFIX_PATH"
|
||||
cp -fR build/host/* "$PREFIX_PATH"
|
||||
cd "$PREFIX_PATH/bin"
|
||||
ln -fs mruby ruby
|
||||
ln -fs mirb irb
|
||||
|
|
Loading…
Reference in a new issue