Commit 861f7d73 by Sebastian Boehm Committed by Mislav Marohnić

Fix install file mode for files in share/

install(1) defaults to file mode 0755 which is inappropriate for Ruby
definitions
parent a953cddd
...@@ -17,4 +17,4 @@ SHARE_PATH="${PREFIX}/share/ruby-build" ...@@ -17,4 +17,4 @@ SHARE_PATH="${PREFIX}/share/ruby-build"
mkdir -p "$BIN_PATH" "$SHARE_PATH" mkdir -p "$BIN_PATH" "$SHARE_PATH"
install -p bin/* "$BIN_PATH" install -p bin/* "$BIN_PATH"
install -p share/ruby-build/* "$SHARE_PATH" install -p -m 0644 share/ruby-build/* "$SHARE_PATH"
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