소스 검색

Fix permission of installed definitinos

pull/113/head
Yamashita Yuu 12 년 전
부모
커밋
e58ac666c4
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. +7
    -1
      plugins/python-build/install.sh

+ 7
- 1
plugins/python-build/install.sh 파일 보기

@ -17,4 +17,10 @@ SHARE_PATH="${PREFIX}/share/python-build"
mkdir -p "$BIN_PATH" "$SHARE_PATH"
install -p bin/* "$BIN_PATH"
cp -RPp share/python-build/* "$SHARE_PATH"
for share in share/python-build/*; do
if [ -d "$share" ]; then
cp -RPp "$share" "$SHARE_PATH"
else
install -p -m 0644 "$share" "$SHARE_PATH"
fi
done

불러오는 중...
취소
저장