mirror of
https://github.com/rbenv/ruby-build.git
synced 2024-12-28 20:55:31 +01:00
Fix install file mode for files in share/
install(1) defaults to file mode 0755 which is inappropriate for Ruby definitions
This commit is contained in:
parent
a953cdddda
commit
861f7d73de
1 changed files with 1 additions and 1 deletions
|
@ -17,4 +17,4 @@ SHARE_PATH="${PREFIX}/share/ruby-build"
|
|||
mkdir -p "$BIN_PATH" "$SHARE_PATH"
|
||||
|
||||
install -p bin/* "$BIN_PATH"
|
||||
install -p share/ruby-build/* "$SHARE_PATH"
|
||||
install -p -m 0644 share/ruby-build/* "$SHARE_PATH"
|
||||
|
|
Loading…
Reference in a new issue