Commit 273bc17f by Jeremy Stephens Committed by Mislav Marohnić

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.
parent c1bd4134
...@@ -449,7 +449,7 @@ build_package_mruby() { ...@@ -449,7 +449,7 @@ build_package_mruby() {
{ rake { rake
mkdir -p "$PREFIX_PATH" mkdir -p "$PREFIX_PATH"
cp -R build/host/* "$PREFIX_PATH" cp -fR build/host/* "$PREFIX_PATH"
cd "$PREFIX_PATH/bin" cd "$PREFIX_PATH/bin"
ln -fs mruby ruby ln -fs mruby ruby
ln -fs mirb irb ln -fs mirb irb
......
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